From cd074a3f1ea17a21b48dcac468d5605a5670b70a Mon Sep 17 00:00:00 2001 From: Dennis Klein Date: Mon, 1 Dec 2025 08:58:20 +0100 Subject: [PATCH] ci: add boost187 variant to CI build matrix Add boost187 environment variant to match the buildcache workflow, using gcc-15 with the boost187 spack environment. --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d19a840..fdea64f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,16 @@ concurrency: jobs: build: if: github.repository == 'FairRootGroup/FairMQ' - name: gcc-${{ matrix.gcc }} + name: ${{ matrix.env }}-gcc-${{ matrix.gcc }} runs-on: ubuntu-latest strategy: fail-fast: false matrix: gcc: ['12', '13', '14', '15'] + env: ['latest'] + include: + - gcc: '15' + env: 'boost187' steps: - uses: actions/checkout@v4 @@ -30,6 +34,7 @@ jobs: uses: ./.github/actions/setup-deps with: gcc: ${{ matrix.gcc }} + env: ${{ matrix.env }} - name: Configure and Build uses: threeal/cmake-action@v2