@@ -5,7 +5,7 @@ on: [push, pull_request]
5
5
6
6
jobs :
7
7
windows-cmake :
8
- name : " ${{matrix.toolset}} ${{matrix.build_type }} C++${{matrix.cxxstd}}"
8
+ name : " CMake ${{matrix.toolset}} ${{matrix.build-type }} C++${{matrix.cxxstd}}"
9
9
runs-on : ${{matrix.os}}
10
10
defaults :
11
11
run :
80
80
--generator "${{ matrix.generator }}"
81
81
82
82
windows-b2 :
83
- name : " ${{matrix.toolset}}"
83
+ name : " B2 ${{matrix.toolset}}"
84
84
runs-on : ${{matrix.os}}
85
85
defaults :
86
86
run :
@@ -109,6 +109,7 @@ jobs:
109
109
--variant debug,release
110
110
111
111
posix-cmake :
112
+ name : " CMake ${{ matrix.toolset }} ${{ matrix.cxxstd }} ${{ matrix.build-type }} ${{ matrix.cxxflags }}"
112
113
defaults :
113
114
run :
114
115
shell : bash
@@ -125,7 +126,6 @@ jobs:
125
126
- { toolset: clang-13, install: clang-13, os: ubuntu-22.04, cxxstd: '20', build-type: 'Release', ldflags: '' }
126
127
- { toolset: clang-14, install: 'clang-14 libc++-14-dev libc++abi-14-dev', os: ubuntu-22.04, cxxstd: '17', build-type: 'Debug', cxxflags: '-stdlib=libc++', ldflags: '-lc++' }
127
128
- { toolset: clang-14, install: 'clang-14 libc++-14-dev libc++abi-14-dev', os: ubuntu-22.04, cxxstd: '20', build-type: 'Release', cxxflags: '-stdlib=libc++', ldflags: '-lc++' }
128
- name : " ${{ matrix.toolset }} ${{ matrix.cxxstd }} ${{ matrix.build-type }} ${{ matrix.cxxflags }}"
129
129
runs-on : ${{ matrix.os }}
130
130
env :
131
131
CXXFLAGS : ${{matrix.cxxflags}} -Wall -Wextra
@@ -186,6 +186,7 @@ jobs:
186
186
--toolset ${{ matrix.toolset }}
187
187
188
188
posix-b2 :
189
+ name : " B2 ${{ matrix.toolset }}"
189
190
defaults :
190
191
run :
191
192
shell : bash
@@ -196,7 +197,6 @@ jobs:
196
197
include :
197
198
- { toolset: gcc-11, install: g++-11, cxxstd: "11,17,20" } # Having C++11 shouldn't break the build
198
199
- { toolset: clang-14, install: clang-11, cxxstd: "17,20" }
199
- name : " ${{ matrix.toolset }}"
200
200
runs-on : ubuntu-22.04
201
201
steps :
202
202
- name : Checkout
0 commit comments