Merge pull request #11 from graalvm/fniephaus/g1gc #19
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 Spring Boot Photon Demo | |
on: | |
push: | |
paths: | |
- 'graalwasm/graalwasm-spring-boot-photon/**' | |
- '.github/workflows/graalwasm-spring-boot-photon.yml' | |
pull_request: | |
paths: | |
- 'graalwasm/graalwasm-spring-boot-photon/**' | |
- '.github/workflows/graalwasm-spring-boot-photon.yml' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
run: | |
name: 'graalwasm-spring-boot-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-spring-boot-photon' | |
run: | | |
cd graalwasm/graalwasm-spring-boot-photon | |
./mvnw --no-transfer-progress clean package | |
- name: Build native 'graalwasm-spring-boot-photon' | |
run: | | |
cd graalwasm/graalwasm-spring-boot-photon | |
./mvnw --no-transfer-progress clean -Pnative native:compile | |
./target/demo & | |
sleep 10 | |
curl --fail-with-body --silent --dump-header - -o /dev/null http://localhost:8080/photo/flipv |