Speed up Quarkus Ecosystem CI tests by switching from native to jvm t… #944
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: Integration Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
maven_profiles: [ | |
"jackson-classic", "jsonb-classic", | |
"jackson-reactive", "jsonb-reactive" | |
] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
cache: 'maven' | |
- name: Compile | |
run: ./mvnw install -Pquick -pl '!integration-test' | |
- name: Integration Tests (latest - classic - jackson) | |
run: ./mvnw clean verify -P${{ matrix.maven_profiles }} -pl integration-test | |