-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: upgrade Gradle to 7.1.1 and GraalVM to 21.2.0 (#160)
- Loading branch information
1 parent
8c99493
commit ae2bba0
Showing
4 changed files
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ jobs: | |
- name: Setup GraalVM CE | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
graalvm: 21.1.0 | ||
graalvm: 21.2.0 | ||
java: ${{ matrix.java }} | ||
- name: Install Native Image | ||
run: gu install native-image | ||
|
@@ -51,4 +51,10 @@ jobs: | |
./gradlew check --continue --no-daemon | ||
fi | ||
env: | ||
TESTCONTAINERS_RYUK_DISABLED: true | ||
TESTCONTAINERS_RYUK_DISABLED: true | ||
- name: Publish Test Report | ||
if: always() | ||
uses: mikepenz/action-junit-report@v2 | ||
with: | ||
check_name: GraalVM CE CI / Test Report (${{ matrix.java }}) | ||
report_paths: '**/build/test-results/test/TEST-*.xml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,7 @@ case "`uname`" in | |
Darwin* ) | ||
darwin=true | ||
;; | ||
MINGW* ) | ||
MSYS* | MINGW* ) | ||
msys=true | ||
;; | ||
NONSTOP* ) | ||
|