Fix flaky test in CustomTypeAdaptersTest #1349
Workflow file for this run
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
name: Build | |
on: [push, pull_request] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
build: | |
name: "Build on JDK ${{ matrix.java }}" | |
strategy: | |
matrix: | |
java: [ 11, 17 ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Set up JDK ${{ matrix.java }}" | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Build with Maven | |
# This also runs javadoc:jar to detect any issues with the Javadoc generated during release | |
run: mvn --batch-mode --update-snapshots --no-transfer-progress verify javadoc:jar | |
native-image-test: | |
name: "GraalVM Native Image test" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Set up GraalVM" | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '17' | |
distribution: 'graalvm' | |
# According to documentation in graalvm/setup-graalvm this is used to avoid rate-limiting issues | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
cache: 'maven' | |
- name: Build and run tests | |
# Only run tests in `graal-native-image-test` (and implicitly build and run tests in `gson`), | |
# everything else is covered already by regular build job above | |
run: mvn test --batch-mode --update-snapshots --no-transfer-progress --activate-profiles native-image-test --projects graal-native-image-test --also-make |