generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 6
47 lines (47 loc) · 1.67 KB
/
graalpy-micronaut-pygal-charts.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Test GraalPy Micronaut Pygal Charts
on:
push:
paths:
- 'graalpy/graalpy-micronaut-pygal-charts/**'
- '.github/workflows/graalpy-micronaut-pygal-charts.yml'
pull_request:
paths:
- 'graalpy/graalpy-micronaut-pygal-charts/**'
- '.github/workflows/graalpy-micronaut-pygal-charts.yml'
workflow_dispatch:
permissions:
contents: read
env:
NATIVE_IMAGE_OPTIONS: '-J-Xmx16g'
jobs:
run:
name: 'graalpy-micronaut-pygal-charts'
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: graalvm/setup-graalvm@v1
with:
java-version: '23.0.0'
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}
cache: 'maven'
native-image-job-reports: 'true'
- name: Build, test, and run 'graalpy-micronaut-pygal-charts' using Maven
run: |
cd graalpy/graalpy-micronaut-pygal-charts
./mvnw --no-transfer-progress clean test -Dmicronaut.http.client.read-timeout=1m
./mvnw --no-transfer-progress mn:run &
mnpid="$!"
sleep 30
curl --fail-with-body --fail-with-body --silent --dump-header - -o /dev/null http://localhost:8080/java
kill $mnpid
- name: Build and run native 'graalpy-micronaut-pygal-charts' using Maven
run: |
cd graalpy/graalpy-micronaut-pygal-charts
./mvnw --no-transfer-progress clean package -DskipTests -Dpackaging=native-image
./target/demo &
mnpid="$!"
sleep 20
curl --fail-with-body --fail-with-body --silent --dump-header - -o /dev/null http://localhost:8080/python
kill $mnpid