Skip to content

Commit 2b762e3

Browse files
committed
better names
1 parent bdd856d commit 2b762e3

File tree

1 file changed

+9
-18
lines changed

1 file changed

+9
-18
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,8 @@ on:
1616
jobs:
1717

1818
linux:
19-
name: '${{ matrix.os }}
20-
<${{ matrix.compiler-desc }} ,
21-
config=${{ matrix.build-type }},
22-
shared=${{ matrix.build-shared }},
23-
cxx=${{ matrix.cxx-standard }}>'
19+
name: '${{ matrix.os }} / ${{ matrix.build-type }} / ${{ matrix.compiler-des }} '
20+
2421
runs-on: ubuntu-latest
2522
strategy:
2623
matrix:
@@ -110,23 +107,20 @@ jobs:
110107
# ---------------------------------------------------------------------------
111108

112109
macos:
113-
name: '${{ matrix.os }}
114-
config=${{ matrix.build-type }},
115-
shared=${{ matrix.build-shared }},
116-
cxx=${{ matrix.cxx-standard }}'
110+
name: '${{ matrix.os }} / ${{ matrix.build-type }}'
117111
runs-on: macos-latest
118112
strategy:
119113
matrix:
120114
build: [1, 2]
121115
include:
116+
122117
# Release
123118
- build: 1
124119
build-type: Release
125120
build-shared: 'ON'
126121
cxx-standard: 17
127122
os: macos-latest
128123

129-
130124
# Debug
131125
- build: 2
132126
build-type: Debug
@@ -169,26 +163,23 @@ jobs:
169163
# ---------------------------------------------------------------------------
170164

171165
windows:
172-
name: '${{ matrix.os }}
173-
<${{ matrix.compiler-desc }},
174-
config=${{ matrix.build-type }},
175-
shared=${{ matrix.build-shared }},
176-
cxx=${{ matrix.cxx-standard }}'
166+
name: '${{ matrix.os }} / ${{ matrix.build-type }}'
177167
runs-on: windows-latest
178168
strategy:
179169
matrix:
180170
build: [1, 2]
181171
include:
172+
173+
# Release
182174
- build: 1
183175
build-type: Release
184176
build-shared: 'ON'
185-
compiler-desc: msvc16.11
186177
cxx-standard: 17
187-
178+
179+
# Debug
188180
- build: 2
189181
build-type: Debug
190182
build-shared: 'ON'
191-
compiler-desc: msvc16.11
192183
cxx-standard: 17
193184

194185

0 commit comments

Comments
 (0)