Skip to content

Commit

Permalink
update jobs to add JVM based Java 21 build, account for native defaul…
Browse files Browse the repository at this point in the history
…t now being 21, use newer specified image name for a 17+17 jvm+native build
  • Loading branch information
gemmellr committed Nov 9, 2023
1 parent a7579f6 commit bb306ca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 11 , 17 ]
java: [ 11 , 17 , 21 ]
mandrel: [ default ]
include:
- java: 20
mandrel: "23.0"
- java: 17
mandrel: "17"

steps:
- uses: actions/checkout@v3
Expand All @@ -45,4 +45,4 @@ jobs:

- name: Build - Native (Specific Builder Image)
if: matrix.mandrel != 'default'
run: mvn -B clean verify -Dnative -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-mandrel-builder-image:${{ matrix.mandrel }}-java${{ matrix.java }}
run: mvn -B clean verify -Dnative -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-mandrel-builder-image:jdk-${{ matrix.mandrel }}
8 changes: 4 additions & 4 deletions .github/workflows/cron-build-mains.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 11 , 17 ]
java: [ 11 , 17 , 21 ]
mandrel: [ default ]
include:
- java: 20
mandrel: "23.0"
- java: 17
mandrel: "17"

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -60,4 +60,4 @@ jobs:

- name: Build - Native (Specific Builder Image)
if: matrix.mandrel != 'default'
run: mvn -B -s .github/cron-maven-settings.xml clean verify -Pnative -Dquarkus.qpid.jms.group-id=org.amqphub.quarkus -Dquarkus.qpid.jms.version=999-SNAPSHOT -Dquarkus.platform.group-id=io.quarkus -Dquarkus.platform.version=999-SNAPSHOT -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-mandrel-builder-image:${{ matrix.mandrel }}-java${{ matrix.java }}
run: mvn -B -s .github/cron-maven-settings.xml clean verify -Pnative -Dquarkus.qpid.jms.group-id=org.amqphub.quarkus -Dquarkus.qpid.jms.version=999-SNAPSHOT -Dquarkus.platform.group-id=io.quarkus -Dquarkus.platform.version=999-SNAPSHOT -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-mandrel-builder-image:jdk-${{ matrix.mandrel }}

0 comments on commit bb306ca

Please sign in to comment.