Skip to content

Commit

Permalink
releaseCheck.sh: add linux/riscv64 for JDK17
Browse files Browse the repository at this point in the history
  • Loading branch information
sxa committed May 14, 2024
1 parent 5ff3b78 commit d78b997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sbin/releaseCheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ for ARCH in x64 aarch64 ppc64le s390x arm riscv64; do
# Exclude checks for platform/versions that Temurin does not ship on
if ! [ \( "${TEMURIN_VERSION}" -eq 8 -a "$ARCH" = "s390x" \) -o \
\( "${TEMURIN_VERSION}" -ge 20 -a "$ARCH" = "arm" \) -o \
\( "${TEMURIN_VERSION}" -lt 21 -a "$ARCH" = "riscv64" \) ]; then
\( "${TEMURIN_VERSION}" -lt 17 -a "$ARCH" = "riscv64" \) ]; then
ACTUAL=$(cat releaseCheck.$$.tmp | grep ${ARCH}_linux | wc -l)
if [ $ACTUAL -eq $EXPECTED ]
then
Expand Down

0 comments on commit d78b997

Please sign in to comment.