Skip to content

Commit

Permalink
CI: Make Quarkus/native job not a matrix job (#6589)
Browse files Browse the repository at this point in the history
Problem is that if the Quarkus/native job is skipped, it will appear as
`CI intTest Quarkus native` - if it runs (as a matrix job), it appears
as `CI intTest Quarkus native (11)`. Both are technically different
checks.

Removing the matrix-strategy to satisfy the required check.
  • Loading branch information
snazy committed Apr 14, 2023
1 parent 924bdd3 commit a359900
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -454,10 +454,6 @@ jobs:
native-quarkus:
name: CI intTest Quarkus native
runs-on: ubuntu-22.04
strategy:
max-parallel: 2
matrix:
java-version: ['11'] # Ideally also '17', but GH concurrent job limit ... :(
needs:
- determine-jobs
if: needs.determine-jobs.outputs.native == 'true'
Expand All @@ -469,13 +465,9 @@ jobs:
more-memory: 'true'
- name: Setup Java, Gradle
uses: ./.github/actions/dev-tool-java
with:
java-version: ${{ matrix.java-version }}

- name: Prepare Gradle build cache
uses: ./.github/actions/ci-incr-build-cache-prepare
with:
java-version: ${{ matrix.java-version }}

- name: Gradle / intTest Quarkus native
uses: gradle/gradle-build-action@v2
Expand Down

0 comments on commit a359900

Please sign in to comment.