Skip to content

Commit

Permalink
CICD: update OS support in test release script (#6012)
Browse files Browse the repository at this point in the history
  • Loading branch information
onetechnical authored Jun 5, 2024
1 parent 0f1b10b commit 8d228c0
Showing 1 changed file with 6 additions and 4 deletions.
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

0 comments on commit 8d228c0

Please sign in to comment.