Skip to content

[CI] Stop testing quay.io images and always build from source #130

[CI] Stop testing quay.io images and always build from source

[CI] Stop testing quay.io images and always build from source #130

Workflow file for this run

name: Weekly CI
on:
push:
paths:
- '.github/workflows/weekly.yml'
- '.github/workflows/base.yml'
- '.github/workflows/base-windows.yml'
pull_request:
paths:
- '.github/workflows/weekly.yml'
- '.github/workflows/base.yml'
- '.github/workflows/base-windows.yml'
schedule:
- cron: '15 0 * * 6'
workflow_dispatch:
# The following aims to reduce CI CPU cycles by:
# 1. Cancelling any previous builds of this PR when pushing new changes to it
# 2. Cancelling any previous builds of a branch when pushing new changes to it in a fork
# 3. Cancelling any pending builds, but not active ones, when pushing to a branch in the main
# repository. This prevents us from constantly cancelling CI runs, while being able to skip
# intermediate builds. E.g., if we perform two pushes the first one will start a CI job and
# the second one will add another one to the queue; if we perform a third push while the
# first CI job is still running the previously queued CI job (for the second push) will be
# cancelled and a new CI job will be queued for the latest (third) push.
concurrency:
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}"
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'graalvm/mandrel' }}
jobs:
####
# Test Quarkus main with 23_0 quayio images
####
q-main-mandrel-23_0-quayio:
name: "Q main M 23.0 image"
uses: graalvm/mandrel/.github/workflows/base.yml@default
with:
builder-image: "quay.io/quarkus/ubi-quarkus-mandrel-builder-image:jdk-17"
####
# Test Quarkus 3.2 with 23_0 quayio images
####
q-3_2-mandrel-23_0-quayio:
name: "Q 3.2 M 23.0 image"
uses: graalvm/mandrel/.github/workflows/base.yml@default
with:
quarkus-version: "3.2.0.Final"
builder-image: "quay.io/quarkus/ubi-quarkus-mandrel-builder-image:jdk-17"
####
# Test Quarkus 2.13 with 22_3 quayio images
####
q-2_13-mandrel-22_3-quayio:
name: "Q 2.13 M 22.3 image"
uses: graalvm/mandrel/.github/workflows/base.yml@default
with:
quarkus-version: "2.13.8.Final"
builder-image: "quay.io/quarkus/ubi-quarkus-mandrel-builder-image:22.3-java17"