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:
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