Skip to content

Commit

Permalink
add cron job against quarkus 3.15.x branch
Browse files Browse the repository at this point in the history
  • Loading branch information
gemmellr committed Nov 7, 2024
1 parent 45ce525 commit 0b78d57
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/cron-build-quarkus-branch-3.15.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: "Cron Build With Quarkus Branch - 3.15.x"

on:
schedule:
- cron: '0 3 * * *'
repository_dispatch:
workflow_dispatch:

jobs:
build:
if: github.repository == 'amqphub/quarkus-qpid-jms' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
java: [ 17 , 21 ]
mandrel: [ default ]

steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.m2/repository/*/*
!~/.m2/repository/io/quarkus
key: ${{ runner.os }}-cron-maven-quarkus-3.15-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-cron-maven-quarkus-3.15-
- name: Install JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'

- name: Build Quarkus 3.15.x-SNAPSHOT
env:
MAVEN_PL: "., io.quarkus:quarkus-bom, io.quarkus:quarkus-core-deployment, io.quarkus:quarkus-arc-deployment, io.quarkus:quarkus-netty-deployment, io.quarkus:quarkus-extension-processor, io.quarkus:quarkus-bootstrap-bom, io.quarkus:quarkus-bootstrap-bom-test, io.quarkus:quarkus-extension-maven-plugin, io.quarkus:quarkus-maven-plugin, io.quarkus:quarkus-rest-deployment, io.quarkus:quarkus-jms-spi-deployment, io.quarkus:quarkus-junit5"
run: |
git clone --depth 1 --branch 3.15 https://github.com/quarkusio/quarkus.git && cd quarkus && echo "Current Quarkus commit:" $(git rev-parse HEAD)
./mvnw -B -s ../.github/cron-maven-settings.xml clean install -DskipTests -DskipITs -Dno-test-modules -Dformat.skip -DskipDocs -am -pl "${MAVEN_PL}"
./mvnw -B -s ../.github/cron-maven-settings.xml -f relocations/pom.xml clean install
- name: Build - JVM
run: mvn -B -s .github/cron-maven-settings.xml clean verify -Dquarkus-version=3.15.999-SNAPSHOT

- name: Build - Native (Default Builder Image)
if: matrix.mandrel == 'default'
run: mvn -B -s .github/cron-maven-settings.xml clean verify -Dquarkus-version=3.15.999-SNAPSHOT -Dnative

- name: Build - Native (Specific Builder Image)
if: matrix.mandrel != 'default'
run: mvn -B -s .github/cron-maven-settings.xml clean verify -Dquarkus-version=3.15.999-SNAPSHOT -Dnative -Dquarkus.native.container-build=true -Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-mandrel-builder-image:jdk-${{ matrix.mandrel }}

0 comments on commit 0b78d57

Please sign in to comment.