From 603e98c17f55e9c345cd7542fa77cccb5ffd5f65 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Thu, 14 Dec 2023 10:15:00 +0100 Subject: [PATCH] Add new workflow --- .github/workflows/key4hep-build-cvmfs.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/key4hep-build-cvmfs.yaml b/.github/workflows/key4hep-build-cvmfs.yaml index 23ad939d..0b36c8ab 100644 --- a/.github/workflows/key4hep-build-cvmfs.yaml +++ b/.github/workflows/key4hep-build-cvmfs.yaml @@ -1,13 +1,19 @@ +name: Key4hep build + on: pull_request: workflow_dispatch: jobs: - test: + build: + strategy: + matrix: + build_type: ["release", "nightly"] + image: ["alma9", "ubuntu22", "centos7"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: key4hep/key4hep-actions/key4hep-build-test@main with: - build_type: release - image: alma9 + build_type: ${{ matrix.build_type }} + image: ${{ matrix.image }} \ No newline at end of file