Build Mac OSX (amd64) Executable #58
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 Mac OSX (amd64) Executable | |
on: | |
workflow_dispatch: | |
inputs: | |
skip-tests: | |
type: boolean | |
description: Skip Test Suite | |
jobs: | |
build: | |
runs-on: macos-11 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Setup GraalVM | |
uses: ayltai/setup-graalvm@v1 | |
with: | |
java-version: 17 | |
graalvm-version: 22.3.0 | |
native-image: true | |
- name: Build with Maven | |
run: mvn package -DskipTests=${{ inputs.skip-tests }} | |
- name: Output artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: OSX Native Binary | |
path: native-image/target/hedgehog.bin | |
- name: Run Binary | |
run: native-image/target/hedgehog.bin |