Skip to content

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

feat: Automate the bin creation. Fixes #2

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

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
path: |
target/*.so
target/flhacker
deploy:
# if: github.ref == 'refs/heads/main'
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download zip artifact
uses: actions/download-artifact@v4
with:
name: flhacker
path: 'html'
- name: Setup Pages
uses: actions/configure-pages@v5 #needed ?
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'html'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4