mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
Test more recent compiler and boost versions
This commit is contained in:
parent
6b735c4c03
commit
80f8cc5e49
1 changed files with 11 additions and 13 deletions
20
.github/workflows/ci.yml
vendored
20
.github/workflows/ci.yml
vendored
|
|
@ -42,17 +42,19 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
# Linux, gcc
|
# Linux, gcc
|
||||||
- { compiler: gcc-5, cxxstd: '14', boostBranch: boost-1.65.0, os: ubuntu-22.04, container: 'ubuntu:18.04' }
|
- { compiler: gcc-7, cxxstd: '14,17', boostBranch: boost-1.86.0, os: ubuntu-20.04 }
|
||||||
- { compiler: gcc-5, cxxstd: '14', boostBranch: boost-1.77.0, os: ubuntu-22.04, container: 'ubuntu:18.04' }
|
- { compiler: gcc-10, cxxstd: '14,17,20', boostBranch: boost-1.86.0, os: ubuntu-22.04 }
|
||||||
- { compiler: gcc-12,cxxstd: '14,17,20', boostBranch: master, os: ubuntu-22.04 }
|
- { compiler: gcc-12, cxxstd: '14,17,20', boostBranch: master, os: ubuntu-22.04 }
|
||||||
|
- { compiler: gcc-14, cxxstd: '14,17,20', boostBranch: boost-1.86.0, os: ubuntu-24.04 }
|
||||||
|
- { compiler: gcc-14, cxxstd: '14,17,20', boostBranch: master, os: ubuntu-24.04 }
|
||||||
|
|
||||||
# Linux, clang
|
# Linux, clang
|
||||||
- { compiler: clang-5.0, cxxstd: '14', boostBranch: boost-1.65.0, os: ubuntu-22.04, container: 'ubuntu:18.04' }
|
- { compiler: clang-14, cxxstd: '14,17,20', boostBranch: boost-1.86.0, os: ubuntu-24.04 }
|
||||||
- { compiler: clang-5.0, cxxstd: '14', boostBranch: boost-1.77.0, os: ubuntu-22.04, container: 'ubuntu:18.04' }
|
- { compiler: clang-18, cxxstd: '14,17,20', boostBranch: boost-1.86.0, os: ubuntu-24.04 }
|
||||||
- { compiler: clang-14, cxxstd: '14,17,20', boostBranch: master, os: ubuntu-22.04 }
|
- { compiler: clang-18, cxxstd: '14,17,20', boostBranch: master, os: ubuntu-24.04 }
|
||||||
|
|
||||||
- { name: Collect coverage, coverage: yes,
|
- { name: Collect coverage, coverage: yes,
|
||||||
compiler: gcc-8, cxxstd: '14', boostBranch: master, os: ubuntu-20.04 }
|
compiler: gcc-8, cxxstd: '14', boostBranch: boost-1.86.0, os: ubuntu-20.04 }
|
||||||
|
|
||||||
timeout-minutes: 120
|
timeout-minutes: 120
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
|
|
@ -127,11 +129,7 @@ jobs:
|
||||||
|
|
||||||
- name: Boost build
|
- name: Boost build
|
||||||
run: |
|
run: |
|
||||||
if [[ "${{matrix.boostBranch}}" == "master" ]]; then
|
|
||||||
B2_FLAGS="cxxstd=${{matrix.cxxstd}}"
|
B2_FLAGS="cxxstd=${{matrix.cxxstd}}"
|
||||||
else
|
|
||||||
B2_FLAGS="cxxflags=-std=c++${{matrix.cxxstd}}"
|
|
||||||
fi
|
|
||||||
if [[ "${{matrix.coverage}}" == "yes" ]]; then
|
if [[ "${{matrix.coverage}}" == "yes" ]]; then
|
||||||
B2_FLAGS="$B2_FLAGS cxxflags=--coverage linkflags=--coverage"
|
B2_FLAGS="$B2_FLAGS cxxflags=--coverage linkflags=--coverage"
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue