Skip to content

Remove --id argument - breaks compatibility and makes no sense #20

Remove --id argument - breaks compatibility and makes no sense

Remove --id argument - breaks compatibility and makes no sense #20

Workflow file for this run

name: GraalVM Native Image builds
on: [push]
jobs:
build:
name: ICE on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: graalvm/setup-graalvm@v1
with:
java-version: '21'
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}
native-image-job-reports: 'true'
- name: Log info
run: |
echo "GRAALVM_HOME: $GRAALVM_HOME"
echo "JAVA_HOME: $JAVA_HOME"
java --version
native-image --version
- name: Start native compile
run: ./gradlew nativeCompile
- name: Upload binary
uses: actions/upload-artifact@v3
with:
name: kia-cli-${{ matrix.os }}
path: kia-cli/build/native/nativeCompile/kia-cli*