Ensure G1 GC is only enabled on Linux. #18
Workflow file for this run
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: Test GraalWasm Micronaut Photon Demo | |
on: | |
push: | |
paths: | |
- 'graalwasm/graalwasm-micronaut-photon/**' | |
- '.github/workflows/graalwasm-micronaut-photon.yml' | |
pull_request: | |
paths: | |
- 'graalwasm/graalwasm-micronaut-photon/**' | |
- '.github/workflows/graalwasm-micronaut-photon.yml' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
run: | |
name: 'graalwasm-micronaut-photon' | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '23.0.1' | |
distribution: 'graalvm' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
cache: 'maven' | |
native-image-job-reports: 'true' | |
- name: Package 'graalwasm-micronaut-photon' | |
run: | | |
cd graalwasm/graalwasm-micronaut-photon | |
./mvnw --no-transfer-progress clean package | |
- name: Build native 'graalwasm-micronaut-photon' | |
run: | | |
cd graalwasm/graalwasm-micronaut-photon | |
./mvnw --no-transfer-progress clean package -Dpackaging=native-image | |
./target/demo & | |
sleep 10 | |
curl --fail-with-body --silent --dump-header - -o /dev/null http://localhost:8080/photo/flipv |