Skip to content

Commit

Permalink
Update Debian commands to Alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximPlusov committed Sep 6, 2024
1 parent abbdfab commit 93ec5fd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/options-tests-with-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
echo whoami: $(whoami)
mkdir ./results
sudo apt-get update -y
sudo apt install git -y
sudo apk update -y
sudo apk add git -y
sudo apt-get install python3 -y
sudo apt-get install python3-pip -y
sudo apk add python3 -y
sudo apk add python3-pip -y
sudo pip install junit2html
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rest-api-tests-with-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
echo pwd: $PWD
echo dir: $(ls ./)
apt-get update -y
apt-get install python3 -y
apt-get install python3-pip -y
apk update -y
apk add python3 -y
apk add python3-pip -y
echo install python3-venv -y
apt-get install python3-venv -y
apk add python3-venv -y
echo python3 -m venv .venv
python3 -m venv .venv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-dkr-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- 8080:8080
steps:
- name: Install wget
run: apt-get update; apt-get install wget -y
run: apk update; apk add wget -y
- name: Test Profiles endpoint
run: wget -O- http://verarest:8080/api/profiles
- name: Test 1B profile endpoint
Expand Down
4 changes: 2 additions & 2 deletions tests/Options/services/bindMountLocalFiles/steps_in_docker.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env bash

ls -la /home/
apt-get update
apt-get install curl -y
apk update
apk add --no-cache curl
cd /home/Res_tmp/
echo -e "\n"

Expand Down

0 comments on commit 93ec5fd

Please sign in to comment.