From 3b49be247674159356ec6c134a2d0170ba6011f8 Mon Sep 17 00:00:00 2001 From: tmadlener Date: Thu, 15 Feb 2024 10:51:31 +0100 Subject: [PATCH 1/2] Update clicdp nightles workflow --- .github/workflows/linux.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index a8d799b..a24db65 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -7,16 +7,13 @@ jobs: strategy: fail-fast: false matrix: - COMPILER: [gcc10, clang11] - LCG: [100] - include: - - COMPILER: gcc8 - LCG: 99python2 + COMPILER: [gcc11] + LCG: [104] steps: - - uses: actions/checkout@v2 - - uses: cvmfs-contrib/github-action-cvmfs@v2 - - uses: aidasoft/run-lcg-view@v3 + - uses: actions/checkout@v4 + - uses: cvmfs-contrib/github-action-cvmfs@v3 + - uses: aidasoft/run-lcg-view@v4 with: view-path: "/cvmfs/clicdp.cern.ch/iLCSoft/lcg/${{ matrix.LCG }}/nightly/x86_64-centos7-${{ matrix.COMPILER }}-opt" setup-script: "init_ilcsoft.sh" From 877be61f02b3ebc9213f1cecde807a9b2f64998d Mon Sep 17 00:00:00 2001 From: tmadlener Date: Thu, 15 Feb 2024 10:51:44 +0100 Subject: [PATCH 2/2] Add key4hep based workflows --- .github/workflows/key4hep.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/key4hep.yml diff --git a/.github/workflows/key4hep.yml b/.github/workflows/key4hep.yml new file mode 100644 index 0000000..738aec6 --- /dev/null +++ b/.github/workflows/key4hep.yml @@ -0,0 +1,18 @@ +name: keyh4ep +on: [push, pull_request] + +jobs: + build-and-test: + runs-on: ubuntu-latest + strategy: + matrix: + build_type: ["release", "nightly"] + image: ["alma9", "ubuntu22", "centos7"] + fail-fast: false + + steps: + - uses: actions/checkout@v4 + - uses: key4hep/key4hep-actions/key4hep-build@main + with: + build_type: ${{ matrix.build_type }} + image: ${{ matrix.image }}