Skip to content

feat: Automate the bin creation.Fixes #2 #45

feat: Automate the bin creation.Fixes #2

feat: Automate the bin creation.Fixes #2 #45

Workflow file for this run

name: CI
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 }}
- name: Run tests
run: ./mvnw clean package
- uses: graalvm/setup-graalvm@v1
with:
distribution: 'graalvm-community'
java-version: ${{ matrix.graalvm-version }}
- name: GraalVM Compile
run: ./mvnw clean -Pnative native:compile
- name: Generate standalone downloadable zip
uses: actions/upload-artifact@v4
with:
name: flhacker.zip
path: |
target/*.so
target/flhacker