Skip to content

Commit f779576

Browse files
committed
add details to workflow job names
1 parent c27abca commit f779576

9 files changed

+19
-24
lines changed

.github/workflows/nightly.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,12 @@ env:
1616

1717
jobs:
1818
fuzz-test:
19-
name: Fuzz test
2019
strategy:
2120
fail-fast: false
2221
matrix:
2322
build_type: [Debug, Release]
2423
compiler: [{c: clang, cxx: clang++}]
25-
24+
name: Fuzz test (ubuntu-latest, build_type=${{matrix.build_type}}, compilers=${{matrix.compiler.c}}/${{matrix.compiler.cxx}})
2625
runs-on: ubuntu-latest
2726

2827
steps:
@@ -70,11 +69,11 @@ jobs:
7069
run: ctest -C ${{matrix.build_type}} --output-on-failure --verbose -L "fuzz-long"
7170

7271
valgrind:
73-
name: Valgrind
7472
strategy:
7573
fail-fast: false
7674
matrix:
7775
tool: ['memcheck', 'drd', 'helgrind']
76+
name: Valgrind (${{matrix.tool}})
7877
runs-on: ubuntu-latest
7978

8079
steps:
@@ -108,7 +107,6 @@ jobs:
108107
run: ${{github.workspace}}/test/test_valgrind.sh ${{github.workspace}} ${{github.workspace}}/build ${{matrix.tool}}
109108

110109
Windows-generators:
111-
name: Windows ${{matrix.generator}} generator
112110
strategy:
113111
matrix:
114112
build_type: [Debug, Release]
@@ -117,6 +115,7 @@ jobs:
117115
static_hwloc: ['ON', 'OFF']
118116
generator: ['Ninja', 'NMake Makefiles']
119117
umfd_lib: ['ON', 'OFF']
118+
name: Windows (generator=${{matrix.generator}}, compilers=${{matrix.compiler.c}}/${{matrix.compiler.cxx}}, build_type=${{matrix.build_type}}, shared_library=${{matrix.shared_library}}, static_hwloc=${{matrix.static_hwloc}}, umfd_lib=${{matrix.umfd_lib}})
120119

121120
runs-on: windows-latest
122121

@@ -201,7 +200,6 @@ jobs:
201200
${{ matrix.static_hwloc == 'ON' && '--hwloc' || '' }}
202201
203202
icx:
204-
name: ICX
205203
env:
206204
VCPKG_PATH: "${{github.workspace}}/build/vcpkg/packages/hwloc_x64-windows;${{github.workspace}}/build/vcpkg/packages/tbb_x64-windows;${{github.workspace}}/build/vcpkg/packages/jemalloc_x64-windows"
207205
strategy:
@@ -215,7 +213,7 @@ jobs:
215213
build_type: Release
216214
compiler: {c: icx, cxx: icx}
217215
shared_library: 'ON'
218-
216+
name: ICX (${{matrix.os}}, build_type=${{matrix.build_type}}, compilers=${{matrix.compiler.c}}/${{matrix.compiler.cxx}}, shared_library=${{matrix.shared_library}})
219217
runs-on: ${{matrix.os}}
220218

221219
steps:
@@ -288,7 +286,7 @@ jobs:
288286
# Scenarios where UMF_LINK_HWLOC_STATICALLY is set to OFF and hwloc is not installed in the system
289287
# The hwloc library is fetched implicitly
290288
hwloc-fallback:
291-
name: "Fallback to static hwloc build"
289+
292290
strategy:
293291
matrix:
294292
include:
@@ -298,7 +296,7 @@ jobs:
298296
- os: 'windows-latest'
299297
build_type: Release
300298
number_of_processors: '$Env:NUMBER_OF_PROCESSORS'
301-
299+
name: "Fallback to static hwloc build (${{matrix.os}}), build_type=${{matrix.build_type}})"
302300
runs-on: ${{matrix.os}}
303301

304302
steps:

.github/workflows/reusable_basic.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ env:
1414

1515
jobs:
1616
ubuntu-build:
17-
name: Ubuntu
1817
strategy:
1918
matrix:
2019
os: ['ubuntu-22.04', 'ubuntu-24.04']
@@ -124,6 +123,7 @@ jobs:
124123
disable_hwloc: 'OFF'
125124
link_hwloc_statically: 'ON'
126125
cmake_ver: 'default'
126+
name: Basic (${{matrix.os}}, build_type=${{matrix.build_type}}, compilers=${{matrix.compiler.c}}/${{matrix.compiler.cxx}}, shared_library=${{matrix.shared_library}}, level_zero_provider=${{matrix.level_zero_provider}}, cuda_provider=${{matrix.cuda_provider}}, install_tbb=${{matrix.install_tbb}}, disable_hwloc=${{matrix.disable_hwloc}}, link_hwloc_statically=${{matrix.link_hwloc_statically}}, cmake_ver=${{matrix.cmake_ver}})
127127
runs-on: ${{matrix.os}}
128128

129129
steps:
@@ -236,7 +236,6 @@ jobs:
236236
${{ matrix.shared_library == 'ON' && '--shared-library' || '' }}
237237
238238
windows-build:
239-
name: Windows
240239
env:
241240
VCPKG_PATH: "${{github.workspace}}/build/vcpkg/packages/hwloc_x64-windows;${{github.workspace}}/build/vcpkg/packages/tbb_x64-windows;${{github.workspace}}/build/vcpkg/packages/jemalloc_x64-windows"
242241
VCPKG_PATH_BIN: "${{github.workspace}}/build/vcpkg/packages/hwloc_x64-windows/bin;${{github.workspace}}/build/vcpkg/packages/tbb_x64-windows/bin;${{github.workspace}}/build/vcpkg/packages/jemalloc_x64-windows/bin"
@@ -274,7 +273,7 @@ jobs:
274273
level_zero_provider: 'OFF'
275274
cuda_provider: 'OFF'
276275
cmake_ver: 'default'
277-
276+
name: Basic (${{matrix.os}}, build_type=${{matrix.build_type}}, compilers=${{matrix.compiler.c}}/${{matrix.compiler.cxx}}, shared_library=${{matrix.shared_library}}, level_zero_provider=${{matrix.level_zero_provider}}, cuda_provider=${{matrix.cuda_provider}}, cmake_ver=${{matrix.cmake_ver}})
278277
runs-on: ${{matrix.os}}
279278

280279
steps:
@@ -513,7 +512,6 @@ jobs:
513512
run: ctest -C ${{matrix.build_type}} --output-on-failure --test-dir test
514513

515514
macos-build:
516-
name: MacOS
517515
strategy:
518516
matrix:
519517
os: ['macos-13', 'macos-14']
@@ -522,6 +520,7 @@ jobs:
522520
static_hwloc: '-DUMF_LINK_HWLOC_STATICALLY=ON'
523521
env:
524522
BUILD_TYPE : "Release"
523+
name: Basic (${{matrix.os}}, static_hwloc=${{matrix.static_hwloc}})
525524
runs-on: ${{matrix.os}}
526525

527526
steps:

.github/workflows/reusable_dax.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ env:
3535

3636
jobs:
3737
dax:
38-
name: Build
3938
# run only on upstream; forks may not have a DAX device
4039
if: github.repository == 'oneapi-src/unified-memory-framework'
4140
strategy:
4241
matrix:
4342
build_type: [Debug, Release]
4443
shared_library: ['ON', 'OFF']
45-
44+
name: DAX (ubuntu, build_type=${{matrix.build_type}}, shared_library=${{matrix.shared_library}})
4645
runs-on: ["DSS-DEVDAX", "DSS-Ubuntu"]
46+
4747
steps:
4848
- name: Check configuration of the DEVDAX
4949
run: |

.github/workflows/reusable_fast.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ env:
1212

1313
jobs:
1414
FastBuild:
15-
name: Fast builds
1615
env:
1716
VCPKG_PATH: "${{github.workspace}}/build/vcpkg/packages/hwloc_x64-windows;${{github.workspace}}/build/vcpkg/packages/tbb_x64-windows;${{github.workspace}}/build/vcpkg/packages/jemalloc_x64-windows"
1817
strategy:
@@ -48,6 +47,7 @@ jobs:
4847
build_tests: 'ON'
4948
extra_build_options: '-DCMAKE_BUILD_TYPE=Release'
5049
simple_cmake: 'ON'
50+
name: Fast builds (${{matrix.os}}, build_tests=${{matrix.build_tests}}, simple_cmake=${{matrix.simple_cmake}}, extra_build_options=${{matrix.extra_build_options}})
5151
runs-on: ${{ (matrix.os == 'ubuntu-latest' && github.repository_owner == 'oneapi-src') && 'intel-ubuntu-22.04' || matrix.os }}
5252

5353
steps:

.github/workflows/reusable_gpu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ env:
3636

3737
jobs:
3838
gpu:
39-
name: "${{matrix.os}}, ${{matrix.build_type}}, shared=${{matrix.shared_library}}"
4039
env:
4140
VCPKG_PATH: "${{github.workspace}}/build/vcpkg/packages/hwloc_x64-windows;${{github.workspace}}/build/vcpkg/packages/tbb_x64-windows;${{github.workspace}}/build/vcpkg/packages/jemalloc_x64-windows;"
4241
COVERAGE_NAME : "exports-coverage-${{inputs.provider}}-${{inputs.runner}}"
@@ -48,8 +47,9 @@ jobs:
4847
shared_library: ${{ fromJSON(inputs.shared_lib)}}
4948
os: ${{ fromJSON(inputs.os)}}
5049
build_type: ${{ fromJSON(inputs.build_type)}}
51-
50+
name: GPU (${{matrix.os}}, build_type=${{matrix.build_type}}, shared=${{matrix.shared_library}})
5251
runs-on: ["DSS-${{inputs.runner}}", "DSS-${{matrix.os}}"]
52+
5353
steps:
5454
# Set various build params based on OS
5555
- name: "[Win] Establish build params"

.github/workflows/reusable_multi_numa.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,14 @@ env:
1414

1515
jobs:
1616
multi_numa:
17-
name: "${{matrix.os}}, ${{matrix.build_type}}, shared=${{matrix.shared_library}}"
1817
# run only on upstream; forks will not have the HW
1918
if: github.repository == 'oneapi-src/unified-memory-framework'
20-
2119
strategy:
2220
matrix:
2321
os: [ubuntu-22.04, rhel-9.1, sles-15]
2422
build_type: [Debug, Release]
2523
shared_library: ['ON', 'OFF']
24+
name: Multi NUMA (${{matrix.os}}, build_type=${{matrix.build_type}}, shared=${{matrix.shared_library}}))
2625
runs-on: ["DSS-MULTI-NUMA", "DSS-${{matrix.os}}"]
2726

2827
steps:

.github/workflows/reusable_proxy_lib.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ env:
1414

1515
jobs:
1616
proxy-ubuntu:
17-
name: Ubuntu
18-
1917
strategy:
2018
matrix:
2119
build_type: [Release, Debug]
2220
compiler: [{c: gcc, cxx: g++}]
2321
proxy_lib_pool: ['SCALABLE', 'JEMALLOC']
22+
name: Proxy Library (ubuntu-22.04, build_type=${{matrix.build_type}}, compilers=${{matrix.compiler.c}}/${{matrix.compiler.cxx}}, proxy_lib_pool=${{matrix.proxy_lib_pool}})
2423
runs-on: ${{ github.repository_owner == 'oneapi-src' && 'intel-ubuntu-22.04' || 'ubuntu-22.04' }}
2524

2625
steps:

.github/workflows/reusable_qemu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ permissions:
1818

1919
jobs:
2020
qemu-build:
21-
name: QEMU
2221
strategy:
2322
matrix:
2423
os: ${{ fromJson(inputs.os) }}
24+
name: QEMU (${{ matrix.os }})
2525

2626
# Host QEMU on any Linux platform
2727
runs-on: ubuntu-22.04

.github/workflows/reusable_sanitizers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ permissions:
1212

1313
jobs:
1414
ubuntu-build:
15-
name: Ubuntu
1615
strategy:
1716
matrix:
1817
compiler: [{c: gcc, cxx: g++}, {c: clang, cxx: clang++}, {c: icx, cxx: icpx}]
1918
# TSAN is mutually exclusive with other sanitizers
2019
sanitizers: [{asan: ON, ubsan: ON, tsan: OFF}, {asan: OFF, ubsan: OFF, tsan: ON}]
20+
name: Sanitizers (ubuntu-22.04, compilers=${{matrix.compiler.c}}/${{matrix.compiler.cxx}}, asan=${{matrix.sanitizers.asan}}, ubsan=${{matrix.sanitizers.ubsan}}, tsan=${{matrix.sanitizers.tsan}})
2121
runs-on: ubuntu-22.04
2222

2323
steps:
@@ -75,14 +75,14 @@ jobs:
7575
ctest --output-on-failure
7676
7777
windows-build:
78-
name: cl and clang-cl on Windows
7978
env:
8079
VCPKG_PATH: "${{github.workspace}}/build/vcpkg/packages/hwloc_x64-windows;${{github.workspace}}/build/vcpkg/packages/tbb_x64-windows;${{github.workspace}}/build/vcpkg/packages/jemalloc_x64-windows"
8180
strategy:
8281
matrix:
8382
compiler: [{c: cl, cxx: cl}, {c: clang-cl, cxx: clang-cl}]
8483
# Only ASAN is supported
8584
sanitizers: [{asan: ON}]
85+
name: Sanitizers (windows-2022, compilers=${{matrix.compiler.c}}/${{matrix.compiler.cxx}}, asan=${{matrix.sanitizers.asan}})
8686
runs-on: windows-2022
8787

8888
steps:

0 commit comments

Comments
 (0)