From ceff68e4ee23cbc3f7604f2e22cbf60c638f6df9 Mon Sep 17 00:00:00 2001 From: Mathieu Champlon Date: Sat, 28 Sep 2024 12:44:46 +0200 Subject: [PATCH] Run tests and coverage on latest boost released version at this time --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5bd538d..44569e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,12 +42,14 @@ jobs: matrix: include: # Linux, gcc + - { compiler: gcc-12, cxxstd: '14,17,20', boostBranch: 1.86.0, os: ubuntu-22.04 } - { compiler: gcc-12, cxxstd: '14,17,20', boostBranch: master, os: ubuntu-22.04 } - + # Linux, clang + - { compiler: clang-14, cxxstd: '14,17,20', boostBranch: 1.86.0, os: ubuntu-22.04 } - { compiler: clang-14, cxxstd: '14,17,20', boostBranch: master, os: ubuntu-22.04 } - - { name: Collect coverage, coverage: yes, compiler: gcc-8, cxxstd: '14', boostBranch: master, os: ubuntu-20.04 } + - { name: Collect coverage, coverage: yes, compiler: gcc-8, cxxstd: '14', boostBranch: 1.86.0, os: ubuntu-20.04 } timeout-minutes: 120 runs-on: ${{matrix.os}}