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.
This commit is contained in:
Dennis Klein
2025-12-01 08:58:20 +01:00
parent 00c343858e
commit cd074a3f1e

View File

@@ -12,12 +12,16 @@ concurrency:
jobs: jobs:
build: build:
if: github.repository == 'FairRootGroup/FairMQ' if: github.repository == 'FairRootGroup/FairMQ'
name: gcc-${{ matrix.gcc }} name: ${{ matrix.env }}-gcc-${{ matrix.gcc }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
gcc: ['12', '13', '14', '15'] gcc: ['12', '13', '14', '15']
env: ['latest']
include:
- gcc: '15'
env: 'boost187'
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -30,6 +34,7 @@ jobs:
uses: ./.github/actions/setup-deps uses: ./.github/actions/setup-deps
with: with:
gcc: ${{ matrix.gcc }} gcc: ${{ matrix.gcc }}
env: ${{ matrix.env }}
- name: Configure and Build - name: Configure and Build
uses: threeal/cmake-action@v2 uses: threeal/cmake-action@v2