From 201d03fc37816395b134c092378f989282c71448 Mon Sep 17 00:00:00 2001 From: Thomas Madlener Date: Thu, 30 Oct 2025 10:25:24 +0100 Subject: [PATCH] Update Key4hep based CI to use existing nightlies --- .github/workflows/key4hep-build.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/key4hep-build.yml b/.github/workflows/key4hep-build.yml index 6a0ea28..037116d 100644 --- a/.github/workflows/key4hep-build.yml +++ b/.github/workflows/key4hep-build.yml @@ -2,15 +2,14 @@ # The template file can be found in # https://github.com/key4hep/key4hep-actions/blob/main/workflows/key4hep-build.yaml name: Key4hep build - on: push: branches: - - main + - master pull_request: workflow_dispatch: schedule: - - cron: '16 5 * * *' + - cron: 16 4 * * 1 concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -21,7 +20,12 @@ jobs: strategy: matrix: build_type: ["release", "nightly"] - image: ["alma9", "ubuntu22"] + image: ["alma9"] + stack: ["key4hep"] + include: + - build_type: nightly + image: ubuntu24 + stack: key4hep fail-fast: false runs-on: ubuntu-latest steps: @@ -30,3 +34,4 @@ jobs: with: build_type: ${{ matrix.build_type }} image: ${{ matrix.image }} + stack: ${{ matrix.stack }}