Skip to content

Commit 765f0d4

Browse files
committed
Improved CI build names
1 parent 84c8649 commit 765f0d4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push, pull_request]
55

66
jobs:
77
windows-cmake:
8-
name: "${{matrix.toolset}} ${{matrix.build_type}} C++${{matrix.cxxstd}}"
8+
name: "CMake ${{matrix.toolset}} ${{matrix.build-type}} C++${{matrix.cxxstd}}"
99
runs-on: ${{matrix.os}}
1010
defaults:
1111
run:
@@ -80,7 +80,7 @@ jobs:
8080
--generator "${{ matrix.generator }}"
8181
8282
windows-b2:
83-
name: "${{matrix.toolset}}"
83+
name: "B2 ${{matrix.toolset}}"
8484
runs-on: ${{matrix.os}}
8585
defaults:
8686
run:
@@ -109,6 +109,7 @@ jobs:
109109
--variant debug,release
110110
111111
posix-cmake:
112+
name: "CMake ${{ matrix.toolset }} ${{ matrix.cxxstd }} ${{ matrix.build-type }} ${{ matrix.cxxflags }}"
112113
defaults:
113114
run:
114115
shell: bash
@@ -125,7 +126,6 @@ jobs:
125126
- { toolset: clang-13, install: clang-13, os: ubuntu-22.04, cxxstd: '20', build-type: 'Release', ldflags: '' }
126127
- { 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++' }
127128
- { 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 }}"
129129
runs-on: ${{ matrix.os }}
130130
env:
131131
CXXFLAGS: ${{matrix.cxxflags}} -Wall -Wextra
@@ -186,6 +186,7 @@ jobs:
186186
--toolset ${{ matrix.toolset }}
187187
188188
posix-b2:
189+
name: "B2 ${{ matrix.toolset }}"
189190
defaults:
190191
run:
191192
shell: bash
@@ -196,7 +197,6 @@ jobs:
196197
include:
197198
- { toolset: gcc-11, install: g++-11, cxxstd: "11,17,20" } # Having C++11 shouldn't break the build
198199
- { toolset: clang-14, install: clang-11, cxxstd: "17,20" }
199-
name: "${{ matrix.toolset }}"
200200
runs-on: ubuntu-22.04
201201
steps:
202202
- name: Checkout

0 commit comments

Comments
 (0)