Nightly CI #1527
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-24-latest: | |
name: "Q main G 24 latest" | |
uses: ./.github/workflows/base.yml | |
with: | |
quarkus-version: "main" | |
version: "graal/master" | |
build-type: "graal-source" | |
jdk: "latest/ea" | |
build-stats-tag: "gha-linux-graal-qmain-glatest-jdk24ea" | |
secrets: | |
UPLOAD_COLLECTOR_TOKEN: ${{ secrets.UPLOAD_COLLECTOR_TOKEN }} | |
q-main-mandrel-24-latest: | |
name: "Q main M 24 latest" | |
uses: ./.github/workflows/base.yml | |
with: | |
quarkus-version: "main" | |
version: "graal/master" | |
jdk: "24/ea" | |
issue-number: "755" | |
issue-repo: "graalvm/mandrel" | |
mandrel-it-issue-number: "266" | |
build-stats-tag: "gha-linux-mandrel-qmain-mlatest-jdk24ea" | |
secrets: | |
ISSUE_BOT_TOKEN: ${{ secrets.MANDREL_BOT_TOKEN }} | |
UPLOAD_COLLECTOR_TOKEN: ${{ secrets.UPLOAD_COLLECTOR_TOKEN }} | |
q-main-mandrel-24-latest-win: | |
name: "Q main M 24 latest windows" | |
uses: ./.github/workflows/base-windows.yml | |
with: | |
quarkus-version: "main" | |
version: "graal/master" | |
issue-number: "756" | |
issue-repo: "graalvm/mandrel" | |
mandrel-it-issue-number: "267" | |
jdk: "24/ea" | |
build-stats-tag: "gha-win-mandrel-qmain-mlatest-jdk24ea" | |
secrets: | |
ISSUE_BOT_TOKEN: ${{ secrets.MANDREL_BOT_TOKEN }} | |
UPLOAD_COLLECTOR_TOKEN: ${{ secrets.UPLOAD_COLLECTOR_TOKEN }} |