Skip to content

Commit

Permalink
Also build jtreg version 7.3.1+1
Browse files Browse the repository at this point in the history
Signed-off-by: Keith W. Campbell <[email protected]>
  • Loading branch information
keithc-ca committed Aug 22, 2023
1 parent 3b1bf4f commit f0f96fd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tools/code-tools/jtreg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

###################################################################
# Script to build jtreg test suite harness #
# currently builds tip, 5.1, 6, 6.1, 7, 7.1, 7.2, 7.3 #
# currently builds tip, 5.1, 6, 6.1, 7, 7.1.1, 7.2, 7.3, 7.3.1 #
###################################################################

# shellcheck disable=SC2035,SC2116
Expand All @@ -16,6 +16,7 @@ readonly JTREG_7='jtreg-7+1'
readonly JTREG_7_1='jtreg-7.1.1+1'
readonly JTREG_7_2='jtreg-7.2+1'
readonly JTREG_7_3='jtreg-7.3+1'
readonly JTREG_7_3_1='jtreg-7.3.1+1'

function checkWorkspaceVar()
{
Expand Down Expand Up @@ -75,6 +76,11 @@ buildJTReg()
export BUILD_VERSION="7.3"
export JAVA_HOME=/usr/lib/jvm/jdk-11
export PATH=$PATH:$JAVA_HOME/bin
elif [ "$1" == "$JTREG_7_3_1" ]; then
export JTREG_BUILD_NUMBER="1"
export BUILD_VERSION="7.3.1"
export JAVA_HOME=/usr/lib/jvm/jdk-11
export PATH=$PATH:$JAVA_HOME/bin
fi
git checkout $version
else
Expand Down Expand Up @@ -148,5 +154,6 @@ buildJTReg "$JTREG_7"
buildJTReg "$JTREG_7_1"
buildJTReg "$JTREG_7_2"
buildJTReg "$JTREG_7_3"
buildJTReg "$JTREG_7_3_1"
buildJTReg
echo '...finished with build process.'

0 comments on commit f0f96fd

Please sign in to comment.