Skip to content

Commit 77f59a6

Browse files
authored
[CI] Rename OS specific jobs (#496)
1 parent 0bb9995 commit 77f59a6

File tree

3 files changed

+34
-34
lines changed

3 files changed

+34
-34
lines changed

.github/workflows/mac.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
workflow_call:
33

44
jobs:
5-
macos-clang-build:
5+
clang-build:
66
runs-on: macOS-latest
77
strategy:
88
matrix:
@@ -44,9 +44,9 @@ jobs:
4444
with:
4545
path: install
4646
name: ${{ matrix.build_type == 'Debug' && 'macos-clang-debug-install' || 'macos-clang-install' }}
47-
macos-clang-test:
47+
clang-test:
4848
needs:
49-
- macos-clang-build
49+
- clang-build
5050
runs-on: macOS-latest
5151
steps:
5252
- uses: actions/checkout@v4
@@ -75,9 +75,9 @@ jobs:
7575
run: python3 scripts/run_tests.py --running-type="threads" --counts 1 2 3 4
7676
env:
7777
PPC_NUM_PROC: 1
78-
macos-clang-test-extended:
78+
clang-test-extended:
7979
needs:
80-
- macos-clang-test
80+
- clang-test
8181
runs-on: macOS-latest
8282
steps:
8383
- uses: actions/checkout@v4

.github/workflows/ubuntu.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
workflow_call:
33

44
jobs:
5-
ubuntu-gcc-build:
5+
gcc-build:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
@@ -53,9 +53,9 @@ jobs:
5353
name: ${{ matrix.build_type == 'Debug' &&
5454
format('ubuntu-gcc-debug-install-{0}', matrix.os) ||
5555
format('ubuntu-gcc-install-{0}', matrix.os) }}
56-
ubuntu-gcc-test:
56+
gcc-test:
5757
needs:
58-
- ubuntu-gcc-build
58+
- gcc-build
5959
runs-on: ${{ matrix.os }}
6060
strategy:
6161
matrix:
@@ -83,9 +83,9 @@ jobs:
8383
run: python3 scripts/run_tests.py --running-type="threads" --counts 1 2 3 4
8484
env:
8585
PPC_NUM_PROC: 1
86-
ubuntu-gcc-test-extended:
86+
gcc-test-extended:
8787
needs:
88-
- ubuntu-gcc-test
88+
- gcc-test
8989
runs-on: ${{ matrix.os }}
9090
strategy:
9191
matrix:
@@ -109,7 +109,7 @@ jobs:
109109
run: python3 scripts/run_tests.py --running-type="threads" --counts 5 7 11 13
110110
env:
111111
PPC_NUM_PROC: 1
112-
ubuntu-clang-build:
112+
clang-build:
113113
runs-on: ${{ matrix.os }}
114114
strategy:
115115
matrix:
@@ -153,9 +153,9 @@ jobs:
153153
with:
154154
path: install
155155
name: ubuntu-clang-install-${{ matrix.os }}
156-
ubuntu-clang-test:
156+
clang-test:
157157
needs:
158-
- ubuntu-clang-build
158+
- clang-build
159159
runs-on: ${{ matrix.os }}
160160
strategy:
161161
matrix:
@@ -185,9 +185,9 @@ jobs:
185185
run: python3 scripts/run_tests.py --running-type="threads" --counts 1 2 3 4
186186
env:
187187
PPC_NUM_PROC: 1
188-
ubuntu-clang-test-extended:
188+
clang-test-extended:
189189
needs:
190-
- ubuntu-clang-test
190+
- clang-test
191191
runs-on: ${{ matrix.os }}
192192
strategy:
193193
matrix:
@@ -213,9 +213,9 @@ jobs:
213213
run: python3 scripts/run_tests.py --running-type="threads" --counts 5 7 11 13
214214
env:
215215
PPC_NUM_PROC: 1
216-
ubuntu-clang-sanitizer-build:
216+
clang-sanitizer-build:
217217
needs:
218-
- ubuntu-clang-build
218+
- clang-build
219219
runs-on: ${{ matrix.os }}
220220
strategy:
221221
matrix:
@@ -262,9 +262,9 @@ jobs:
262262
with:
263263
path: install
264264
name: ubuntu-clang-sanitizer-install-${{ matrix.os }}
265-
ubuntu-clang-sanitizer-test:
265+
clang-sanitizer-test:
266266
needs:
267-
- ubuntu-clang-sanitizer-build
267+
- clang-sanitizer-build
268268
runs-on: ${{ matrix.os }}
269269
strategy:
270270
matrix:
@@ -301,9 +301,9 @@ jobs:
301301
PPC_ASAN_RUN: 1
302302
ASAN_OPTIONS: abort_on_error=1
303303
UBSAN_OPTIONS: halt_on_error=1
304-
ubuntu-clang-sanitizer-test-extended:
304+
clang-sanitizer-test-extended:
305305
needs:
306-
- ubuntu-clang-sanitizer-test
306+
- clang-sanitizer-test
307307
runs-on: ${{ matrix.os }}
308308
strategy:
309309
matrix:
@@ -331,10 +331,10 @@ jobs:
331331
env:
332332
PPC_NUM_PROC: 1
333333
PPC_ASAN_RUN: 1
334-
ubuntu-gcc-build-codecov:
334+
gcc-build-codecov:
335335
needs:
336-
- ubuntu-gcc-test-extended
337-
- ubuntu-clang-test-extended
336+
- gcc-test-extended
337+
- clang-test-extended
338338
runs-on: ubuntu-24.04
339339
steps:
340340
- uses: actions/checkout@v4

.github/workflows/windows.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
workflow_call:
33

44
jobs:
5-
windows-msvc-build:
5+
msvc-build:
66
runs-on: windows-latest
77
strategy:
88
matrix:
@@ -33,9 +33,9 @@ jobs:
3333
with:
3434
path: install
3535
name: ${{ matrix.build_type == 'Debug' && 'windows-msvc-debug-install' || 'windows-msvc-install' }}
36-
windows-msvc-test:
36+
msvc-test:
3737
needs:
38-
- windows-msvc-build
38+
- msvc-build
3939
runs-on: windows-latest
4040
defaults:
4141
run:
@@ -58,9 +58,9 @@ jobs:
5858
run: python3 scripts/run_tests.py --running-type="threads" --counts 1 2 3 4
5959
env:
6060
PPC_NUM_PROC: 1
61-
windows-msvc-test-extended:
61+
msvc-test-extended:
6262
needs:
63-
- windows-msvc-test
63+
- msvc-test
6464
runs-on: windows-latest
6565
defaults:
6666
run:
@@ -79,7 +79,7 @@ jobs:
7979
run: python3 scripts/run_tests.py --running-type="threads" --counts 5 7 11 13
8080
env:
8181
PPC_NUM_PROC: 1
82-
windows-clang-build:
82+
clang-build:
8383
runs-on: windows-latest
8484
defaults:
8585
run:
@@ -117,9 +117,9 @@ jobs:
117117
with:
118118
path: install
119119
name: windows-clang-install
120-
windows-clang-test:
120+
clang-test:
121121
needs:
122-
- windows-clang-build
122+
- clang-build
123123
runs-on: windows-latest
124124
defaults:
125125
run:
@@ -138,9 +138,9 @@ jobs:
138138
run: python3 scripts/run_tests.py --running-type="threads" --counts 1 2 3 4
139139
env:
140140
PPC_NUM_PROC: 1
141-
windows-clang-test-extended:
141+
clang-test-extended:
142142
needs:
143-
- windows-clang-test
143+
- clang-test
144144
runs-on: windows-latest
145145
defaults:
146146
run:

0 commit comments

Comments
 (0)