Skip to content

Commit

Permalink
Skip tests when building native images.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Sep 24, 2024
1 parent 6d7bc31 commit b9a5c2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/graalpy-micronaut-guide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build and run native 'graalpy-micronaut-guide' using Maven
run: |
cd graalpy/graalpy-micronaut-guide
./mvnw --no-transfer-progress clean package -Dpackaging=native-image
./mvnw --no-transfer-progress clean package -DskipTests -Dpackaging=native-image
./target/demo &
sleep 20
curl -s -D - -o /dev/null http://localhost:8080/
2 changes: 1 addition & 1 deletion .github/workflows/graalpy-spring-boot-guide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build and run native 'graalpy-spring-boot-guide' using Maven
run: |
cd graalpy/graalpy-spring-boot-guide
./mvnw --no-transfer-progress clean -Pnative native:compile
./mvnw --no-transfer-progress clean -DskipTests -Pnative native:compile
./target/demo &
sleep 20
curl -s -D - -o /dev/null http://localhost:8080/

0 comments on commit b9a5c2d

Please sign in to comment.