Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Debian commands to Alpine #177

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading