Merge pull request #128 from mpalourdio/dependabot/maven/org.codehaus… #519
This file contains hidden or 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: back | |
| on: [ push, pull_request, workflow_dispatch ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 4 | |
| matrix: | |
| java-version: [ 21.x ] | |
| graalvm-version: [ 21 ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ matrix.java-version }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java-version }} | |
| cache: 'maven' | |
| - name: Run full build | |
| run: ./mvnw clean test -B | |
| - uses: graalvm/setup-graalvm@v1 | |
| with: | |
| distribution: 'liberica' | |
| java-version: ${{ matrix.graalvm-version }} | |
| cache: 'maven' | |
| - name: GraalVM Compile | |
| run: ./mvnw clean -Pnative native:compile | |
| continue-on-error: true | |