Skip to content

Commit 4398130

Browse files
Add display names to all PR build jobs on GitHub Actions
Summary: Migration to GitHub Differential Revision: D57707064
1 parent 414fd1e commit 4398130

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ env:
1212
MKL_THREADING_LAYER: GNU
1313
jobs:
1414
format:
15+
name: Format
1516
runs-on: ubuntu-latest
1617
steps:
1718
- name: Checkout
@@ -37,12 +38,14 @@ jobs:
3738
exit 1
3839
fi
3940
linux-x86_64-cmake:
41+
name: Linux x86_64 (cmake)
4042
runs-on: ubuntu-latest
4143
steps:
4244
- name: Checkout
4345
uses: actions/checkout@v4
4446
- uses: ./.github/actions/build_cmake
4547
linux-x86_64-AVX2-cmake:
48+
name: Linux x86_64 AVX2 (cmake)
4649
runs-on: ubuntu-latest
4750
steps:
4851
- name: Checkout
@@ -51,6 +54,7 @@ jobs:
5154
with:
5255
opt_level: avx2
5356
linux-x86_64-AVX512-cmake:
57+
name: Linux x86_64 AVX512 (cmake)
5458
if: false # TODO: enable when GitHub Actions adds AVX-512 hosts
5559
runs-on: ubuntu-latest
5660
steps:
@@ -60,6 +64,7 @@ jobs:
6064
with:
6165
opt_level: avx512
6266
linux-x86_64-GPU-cmake:
67+
name: Linux x86_64 GPU (cmake)
6368
needs: linux-x86_64-AVX2-cmake
6469
runs-on: 4-core-ubuntu-gpu-t4
6570
steps:
@@ -69,6 +74,7 @@ jobs:
6974
with:
7075
gpu: ON
7176
linux-x86_64-GPU-w-RAFT-cmake:
77+
name: Linux x86_64 GPU w/ RAFT (cmake)
7278
runs-on: 4-core-ubuntu-gpu-t4
7379
steps:
7480
- name: Checkout
@@ -78,6 +84,7 @@ jobs:
7884
gpu: ON
7985
raft: ON
8086
linux-x86_64-conda:
87+
name: Linux x86_64 (conda)
8188
runs-on: ubuntu-latest
8289
steps:
8390
- name: Checkout
@@ -87,6 +94,7 @@ jobs:
8794
fetch-tags: true
8895
- uses: ./.github/actions/build_conda
8996
windows-x86_64-conda:
97+
name: Windows x86_64 (conda)
9098
runs-on: windows-2019
9199
steps:
92100
- name: Checkout
@@ -96,6 +104,7 @@ jobs:
96104
fetch-tags: true
97105
- uses: ./.github/actions/build_conda
98106
linux-arm64-conda:
107+
name: Linux arm64 (conda)
99108
runs-on: 2-core-ubuntu-arm
100109
steps:
101110
- name: Checkout
@@ -105,6 +114,7 @@ jobs:
105114
fetch-tags: true
106115
- uses: ./.github/actions/build_conda
107116
linux-x86_64-packages:
117+
name: Linux x86_64 packages
108118
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
109119
runs-on: ubuntu-latest
110120
steps:
@@ -117,6 +127,7 @@ jobs:
117127
with:
118128
label: main
119129
linux-x86_64-GPU-packages-CUDA-11-4-4:
130+
name: Linux x86_64 GPU packages (CUDA 11.4.4)
120131
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
121132
runs-on: 4-core-ubuntu-gpu-t4
122133
env:
@@ -134,6 +145,7 @@ jobs:
134145
cuda: "11.4.4"
135146
compiler_version: "11.2"
136147
linux-x86_64-GPU-RAFT-packages-CUDA11-8-0:
148+
name: Linux x86_64 GPU w/ RAFT packages (CUDA 11.8.0)
137149
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
138150
runs-on: 4-core-ubuntu-gpu-t4
139151
env:
@@ -151,6 +163,7 @@ jobs:
151163
cuda: "11.8.0"
152164
compiler_version: "11.2"
153165
linux-x86_64-GPU-packages-CUDA-12-1-1:
166+
name: Linux x86_64 GPU packages (CUDA 12.1.1)
154167
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
155168
runs-on: 4-core-ubuntu-gpu-t4
156169
env:
@@ -167,6 +180,7 @@ jobs:
167180
cuda: "12.1.1"
168181
compiler_version: "11.2"
169182
linux-x86_64-GPU-RAFT-packages-CUDA12-1-1:
183+
name: Linux x86_64 GPU w/ RAFT packages (CUDA 12.1.1)
170184
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
171185
runs-on: 4-core-ubuntu-gpu-t4
172186
env:
@@ -184,6 +198,7 @@ jobs:
184198
cuda: "12.1.1"
185199
compiler_version: "11.2"
186200
windows-x86_64-packages:
201+
name: Windows x86_64 packages
187202
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
188203
runs-on: windows-2019
189204
steps:
@@ -196,6 +211,7 @@ jobs:
196211
with:
197212
label: main
198213
osx-arm64-packages:
214+
name: OSX arm64 packages
199215
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
200216
runs-on: macos-14
201217
steps:
@@ -208,6 +224,7 @@ jobs:
208224
with:
209225
label: main
210226
linux-arm64-packages:
227+
name: Linux arm64 packages
211228
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
212229
runs-on: 2-core-ubuntu-arm
213230
steps:

0 commit comments

Comments
 (0)