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

CICD: update OS support in test release script #6012

Merged
merged 2 commits into from
Jun 5, 2024
Merged
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
10 changes: 6 additions & 4 deletions test/packages/test_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ then
fi

OS_LIST=(
centos:7
quay.io/centos/centos:stream8
fedora:38
quay.io/centos/centos:stream9
fedora:39
fedora:40
ubuntu:20.04
ubuntu:22.04
ubuntu:24.04
)

BUCKET=algorand-builds
Expand Down Expand Up @@ -68,7 +69,8 @@ EOF
then
WITH_PACMAN=$(echo -e "${TOKENIZED//\{\{PACMAN\}\}/RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y curl}")
else
WITH_PACMAN=$(echo -e "${TOKENIZED//\{\{PACMAN\}\}/RUN yum install -y curl}")
# fedora and centos already have curl installed.
WITH_PACMAN=$(echo -e "${TOKENIZED//\{\{PACMAN\}\}/}")
fi

echo -e "$BLUE_FG[$0]$END_FG_COLOR Testing $item..."
Expand Down
Loading