Skip to content

Commit f9f5b03

Browse files
committed
[OPENJDK-2605]Update version numbers for Jan 24 CPU.
1 parent 7a0008b commit f9f5b03

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

containersQa/testlib.bash

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function processArguments() {
4141
exit 1
4242
# I am not 100% sure this is the best approach. It may be enough that the command does not fail without needing the exact return value.
4343
# I am running this to ensure the string passed in as the image repo actually exisits.
44-
elif [[ $(curl --silent -f -I -k $ARG_JDK |grep -E "^HTTP" | awk -F " " '{print $2}')==302 ]]
44+
elif [[ $(curl --silent -f -I -k $ARG_JDK |grep -E "^HTTP" | awk -F " " '{print $2}') == 302 ]]
4545
then
4646
echo "OpenJDK Container Image found on Brew."
4747
JDK_CONTAINER_IMAGE=$ARG_JDK
@@ -703,18 +703,18 @@ function checkHardcodedJdks() {
703703
if [ "$OTOOL_jresdk" == "jre" ] ; then
704704
echo "otool jresdk settings is: $OTOOL_jresdk"
705705
echo "Check version based off java -version call."
706-
JRE_8_VERSION='1.8.0_392-b08'
707-
JRE_11_VERSION='11.0.21+9-LTS'
708-
JRE_17_VERSION='17.0.9+9-LTS'
709-
JRE_21_VERSION='21.0.1+12-LTS'
706+
JRE_8_VERSION='1.8.0_402-b06'
707+
JRE_11_VERSION='11.0.22+7-LTS'
708+
JRE_17_VERSION='17.0.10+7-LTS'
709+
JRE_21_VERSION='21.0.2+13-LTS'
710710
cat $(getOldJavaVersionLog)
711711
cat $(getOldJavaVersionLog) | grep "openjdk version"
712712
cat $(getOldJavaVersionLog) | grep -e "$JRE_11_VERSION" -e "$JRE_8_VERSION" -e "$JRE_17_VERSION" -e "$JRE_21_VERSION"
713713

714714
else
715715
cat $(getOldMvnVersionLog)
716716
cat $(getOldMvnVersionLog) | grep "Java version:"
717-
cat $(getOldMvnVersionLog) | grep -e "Java version: 11.0.21" -e "Java version: 1.8.0_392" -e "Java version: 17.0.9" -e "Java version: 21.0.1"
717+
cat $(getOldMvnVersionLog) | grep -e "Java version: 11.0.22" -e "Java version: 1.8.0_402" -e "Java version: 17.0.10" -e "Java version: 21.0.2"
718718
fi
719719

720720
}

0 commit comments

Comments
 (0)