update: use blank option names in OptCfg as indent in help (#16) #46
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: Java CI | |
on: | |
push: | |
branches: [ '*', '*/*' ] | |
jobs: | |
build: | |
name: Build for GraalVM (OpenJDK ${{ matrix.javaver }}) on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
javaver: [21, 22] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: GitHub Action for GraalVM | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: ${{ matrix.javaver }} | |
distribution: 'graalvm' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
native-image-job-reports: 'true' | |
- name: Build and test | |
run: mvn package | |
- name: Prepare native test | |
run: | | |
cp .ci/${{ matrix.os }}/resource-config.json src/test/resources/META-INF/native-image/ | |
- name: Native test | |
run: mvn -Pnative test |