From 400ff629ba78b8ac563a487243df9675d9faf6b0 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Sun, 25 Feb 2024 09:25:27 +0100 Subject: [PATCH] Update the key4hep-build workflow; previous commit: Change clone paths in the readme (#18) --- .github/workflows/key4hep-build.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/key4hep-build.yaml diff --git a/.github/workflows/key4hep-build.yaml b/.github/workflows/key4hep-build.yaml new file mode 100644 index 0000000..5ba768a --- /dev/null +++ b/.github/workflows/key4hep-build.yaml @@ -0,0 +1,26 @@ +name: Key4hep build + +on: + push: + branches: + - main + pull_request: + workflow_dispatch: + schedule: + - cron: '17 5 * * *' + + +jobs: + build: + strategy: + matrix: + build_type: ["release", "nightly"] + image: ["alma9", "ubuntu22", "centos7"] + fail-fast: false + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: key4hep/key4hep-actions/key4hep-build@main + with: + build_type: ${{ matrix.build_type }} + image: ${{ matrix.image }}