We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcc4d36 commit 959a61fCopy full SHA for 959a61f
.github/actions/get-jtreg/action.yml
@@ -57,7 +57,7 @@ runs:
57
- name: 'Build JTReg'
58
run: |
59
# Build JTReg and move files to the proper locations
60
- bash make/build.sh --jdk "$(realpath bootjdk/jdk)"
+ bash make/build.sh --jdk "$JAVA_HOME_17_X64"
61
mkdir ../installed
62
mv build/images/jtreg/* ../installed
63
working-directory: jtreg/src
.github/actions/get-msys2/action.yml
@@ -30,7 +30,8 @@ runs:
30
using: composite
31
steps:
32
- name: 'Install MSYS2'
33
- uses: msys2/setup-msys2@v2
+ # use a specific release of msys2/setup-msys2 to prevent jtreg build failures on newer release
34
+ uses: msys2/setup-msys2@7efe20baefed56359985e327d329042cde2434ff
35
with:
36
install: 'autoconf tar unzip zip make'
37
path-type: minimal
0 commit comments