Skip to content

Update native-image build stage #32

Update native-image build stage

Update native-image build stage #32

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Java CI with Maven
on:
push:
branches: [ "multiple-archs" ]
jobs:
build:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: graalvm/setup-graalvm@v1
with:
java-version: '17'
distribution: 'graalvm'
cache: maven
- name: Package
run: mvn -B package -Pdep-check
- id: version
run: echo "version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> "$GITHUB_OUTPUT"
- name: Upload Build Resources
uses: actions/upload-artifact@v4
with:
name: exe-jar
path: "pace-cli/target/*-jar-with-dependencies.jar"
- name: Upload Native Reflection Configuration
uses: actions/upload-artifact@v4
with:
name: reflection-config
path: "pace-cli/target/classes/native-reflection-configuration.json"
native-image:
needs: build
strategy:
matrix:
os: [macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Set up JDK 17
uses: graalvm/setup-graalvm@v1
with:
java-version: '17'
distribution: 'graalvm'
- name: Download Jar
uses: actions/download-artifact@v4
with:
name: exe-jar
- name: Download Native Reflection Configuration
uses: actions/download-artifact@v4
with:
name: reflection-config
- name: Build Executable
run: native-image -jar pace-cli-${{ needs.build.outputs.version }}-jar-with-dependencies.jar -H:Name=pace-cli -H:ReflectionConfigurationFiles=native-reflection-configuration.json
- name: Upload Executable
uses: actions/upload-artifact@v4
with:
name: pace-cli-${{ env.RUNNER_ARCH }}
path: "pace-cli"
release:
needs:
- build
- native-image
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- run: mkdir release
# - run: zip -r release/pace-cli-mac-arm64-${{ needs.build.outputs.version }}.zip pace-cli-mac-arm64
- run: ls -l
- run: cp exe-jar/pace-cli-${{ needs.build.outputs.version }}-jar-with-dependencies.jar release/pace-cli-${{ needs.build.outputs.version }}.jar
- name: Update branch release
uses: eine/tip@master
with:
tag: ${{ github.ref_name }}-latest
rm: true
token: ${{ secrets.RELEASE_PAT }}
files: release/*