Skip to content

Nightly CI

Nightly CI #1233

Workflow file for this run

name: Nightly CI
on:
push:
paths:
- '.github/workflows/nightly.yml'
- '.github/workflows/base.yml'
- '.github/workflows/base-windows.yml'
pull_request:
paths:
- '.github/workflows/nightly.yml'
- '.github/workflows/base.yml'
- '.github/workflows/base-windows.yml'
schedule:
- cron: '15 0 * * *'
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 latest graal sources built as Mandrel and GraalVM
####
q-main-graal-22-latest:
name: "Q main G 22 latest"
uses: graalvm/mandrel/.github/workflows/base.yml@default
with:
quarkus-version: "main"
version: "graal/master"
build-type: "graal-source"
jdk: "latest/ea"
build-stats-tag: "gha-linux-graal-qmain-glatest-jdk22ea"
secrets:
UPLOAD_COLLECTOR_TOKEN: ${{ secrets.UPLOAD_COLLECTOR_TOKEN }}
q-main-mandrel-22-latest:
name: "Q main M 22 latest"
uses: graalvm/mandrel/.github/workflows/base.yml@default
with:
quarkus-version: "main"
version: "graal/master"
jdk: "22/ea"
issue-number: "580"
issue-repo: "graalvm/mandrel"
mandrel-it-issue-number: "208"
build-stats-tag: "gha-linux-mandrel-qmain-mlatest-jdk22ea"
secrets:
ISSUE_BOT_TOKEN: ${{ secrets.MANDREL_BOT_TOKEN }}
UPLOAD_COLLECTOR_TOKEN: ${{ secrets.UPLOAD_COLLECTOR_TOKEN }}
q-main-mandrel-22-latest-win:
name: "Q main M 22 latest windows"
uses: graalvm/mandrel/.github/workflows/base-windows.yml@default
with:
quarkus-version: "main"
version: "graal/master"
issue-number: "579"
issue-repo: "graalvm/mandrel"
mandrel-it-issue-number: "207"
jdk: "22/ea"
build-stats-tag: "gha-win-mandrel-qmain-mlatest-jdk22ea"
secrets:
ISSUE_BOT_TOKEN: ${{ secrets.MANDREL_BOT_TOKEN }}
UPLOAD_COLLECTOR_TOKEN: ${{ secrets.UPLOAD_COLLECTOR_TOKEN }}