Skip to content

Commit

Permalink
FIx
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Oct 7, 2024
1 parent 276e232 commit b7989c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/graalpy-micronaut-pygal-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
./mvnw --no-transfer-progress mn:run &
mnpid="$!"
sleep 30
curl -s -D - -o /dev/null http://localhost:8080/java
curl --fail-with-body -s -D - -o /dev/null http://localhost:8080/java
kill $mnpid
- name: Build and run native 'graalpy-micronaut-pygal-charts' using Maven
run: |
Expand All @@ -43,5 +43,5 @@ jobs:
./target/demo &
mnpid="$!"
sleep 20
curl -s -D - -o /dev/null http://localhost:8080/python
curl --fail-with-body -s -D - -o /dev/null http://localhost:8080/python
kill $mnpid
4 changes: 2 additions & 2 deletions .github/workflows/graalpy-spring-boot-pygal-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
./mvnw --no-transfer-progress spring-boot:run &
sbpid="$!"
sleep 30
curl -s -D - -o /dev/null http://localhost:8080/java
curl --fail-with-body --silent --dump-header - -o /dev/null http://localhost:8080/java
kill $sbpid
- name: Build and run native 'graalpy-spring-boot-pygal-charts' using Maven
run: |
Expand All @@ -43,5 +43,5 @@ jobs:
./target/demo &
sbpid="$!"
sleep 20
curl -s -D - -o /dev/null http://localhost:8080/python
curl --fail-with-body --silent --dump-header - -o /dev/null http://localhost:8080/python
kill $sbpid

0 comments on commit b7989c9

Please sign in to comment.