diff --git a/.github/actions/get-jtreg/action.yml b/.github/actions/get-jtreg/action.yml index 9e143551399..b2339792a8c 100644 --- a/.github/actions/get-jtreg/action.yml +++ b/.github/actions/get-jtreg/action.yml @@ -57,9 +57,11 @@ runs: - name: 'Build JTReg' run: | # Build JTReg and move files to the proper locations - bash make/build.sh --jdk "$JAVA_HOME_17_X64" + set -vx + JDK_ARCHIVE_URL=https://download.java.net/java/GA/jdk20/bdc68b4b9cbc4ebcb30745c85038d91d/36/GPL/openjdk-20_linux-x64_bin.tar.gz JAVA_HOME="$JAVA_HOME_17_X64" bash -vx make/build.sh mkdir ../installed mv build/images/jtreg/* ../installed + set +vx working-directory: jtreg/src shell: bash if: steps.get-cached-jtreg.outputs.cache-hit != 'true'