feat(transition): bounded revise transitions with auto feedback injection #121
This file contains hidden or 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: 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 |