Skip to content

Commit

Permalink
ci: upgrade Gradle to 7.1.1 and GraalVM to 21.2.0 (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
micronaut-build authored Jul 22, 2021
1 parent 8c99493 commit ae2bba0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
8 changes: 7 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,13 @@ jobs:
- name: Build with Gradle
run: ./gradlew dependencyUpdates check --no-daemon --parallel --continue
env:
TESTCONTAINERS_RYUK_DISABLED: true
TESTCONTAINERS_RYUK_DISABLED: true
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v2
with:
check_name: Java CI / Test Report (${{ matrix.java }})
report_paths: '**/build/test-results/test/TEST-*.xml'
- name: Publish to Sonatype Snapshots
if: success() && github.event_name == 'push' && matrix.java == '8'
env:
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ case "`uname`" in
Darwin* )
darwin=true
;;
MINGW* )
MSYS* | MINGW* )
msys=true
;;
NONSTOP* )
Expand Down

0 comments on commit ae2bba0

Please sign in to comment.