Skip to content

feat(transition): condition-based routing with onCondition DSL and el… #124

feat(transition): condition-based routing with onCondition DSL and el…

feat(transition): condition-based routing with onCondition DSL and el… #124

Workflow file for this run

name: Native Image
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: native-${{ github.ref }}
cancel-in-progress: true
jobs:
native-build:
name: GraalVM Native Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: graalvm/setup-graalvm@54b4f5a65c1a84b2fdfdc2078fe43df32819e4b1 # v1
with:
java-version: '25'
distribution: 'graalvm'
native-image-job-reports: 'true'
- uses: gradle/actions/setup-gradle@48b5f213c81028ace310571dc5ec0fbbca0b2947 # v4.4.3
- name: Build native server binary
run: ./gradlew hensu-server:build -Dquarkus.native.enabled=true -Dquarkus.package.type=native -x test
- name: Upload native binary
uses: actions/upload-artifact@v4
with:
name: hensu-server-native
path: hensu-server/build/*-runner
retention-days: 3