Skip to content

Commit e412666

Browse files
izaitsevfbjithunnair-amd
authored andcommitted
shorten binary validation workflow names, so they are more readable in the HUD and GH job view (pytorch#1159)
1 parent 9ac55fc commit e412666

6 files changed

+25
-19
lines changed

.github/workflows/validate-binaries.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ on:
4141
- all
4242

4343
jobs:
44-
validate-windows-binaries:
44+
win:
4545
if: inputs.os == 'windows' || inputs.os == 'all'
4646
uses: ./.github/workflows/validate-windows-binaries.yml
4747
with:
4848
channel: ${{ inputs.channel }}
4949

50-
validate-linux-binaries:
50+
linux:
5151
if: inputs.os == 'linux' || inputs.os == 'all'
5252
uses: ./.github/workflows/validate-linux-binaries.yml
5353
with:
5454
channel: ${{ inputs.channel }}
5555

56-
validate-mac-binaries:
56+
mac:
5757
if: inputs.os == 'macos' || inputs.os == 'all'
5858
uses: ./.github/workflows/validate-macos-binaries.yml
5959
with:

.github/workflows/validate-linux-binaries.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
os: linux
4040
channel: ${{ inputs.channel }}
4141

42-
validate-linux-binaries-conda:
42+
linux-conda:
4343
needs: generate-linux-conda-matrix
4444
strategy:
4545
matrix:
@@ -58,7 +58,8 @@ jobs:
5858
dev_toolset: ''
5959
package_type: conda
6060
target_os: linux
61-
validate-linux-binaries-wheels:
61+
62+
linux-wheel:
6263
needs: generate-linux-wheel-matrix
6364
strategy:
6465
matrix:
@@ -78,7 +79,7 @@ jobs:
7879
package_type: wheel
7980
target_os: linux
8081

81-
validate-linux-libtorch-binaries:
82+
linux-libt:
8283
needs: generate-linux-libtorch-matrix
8384
strategy:
8485
matrix:

.github/workflows/validate-macos-binaries.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
os: macos
4646
channel: ${{ inputs.channel }}
4747

48-
validate-macos-arm64-binaries-conda:
48+
mac-arm64-conda:
4949
needs: generate-macos-arm64-conda-matrix
5050
strategy:
5151
matrix:
@@ -63,7 +63,8 @@ jobs:
6363
desired_cuda: ${{ matrix.desired_cuda }}
6464
package_type: conda
6565
target_os: macos
66-
validate-macos-arm64-binaries-wheel:
66+
67+
mac-arm64-wheel:
6768
needs: generate-macos-arm64-wheel-matrix
6869
strategy:
6970
matrix:
@@ -81,7 +82,8 @@ jobs:
8182
desired_cuda: ${{ matrix.desired_cuda }}
8283
package_type: wheel
8384
target_os: macos
84-
validate-macos-x86_64-binaries-conda:
85+
86+
mac-x64-conda:
8587
needs: generate-macos-x86_64-conda-matrix
8688
strategy:
8789
matrix:
@@ -99,7 +101,8 @@ jobs:
99101
desired_cuda: ${{ matrix.desired_cuda }}
100102
package_type: conda
101103
target_os: macos
102-
validate-macos-x86_64-binaries-wheel:
104+
105+
mac-x64-wheel:
103106
needs: generate-macos-x86_64-wheel-matrix
104107
strategy:
105108
matrix:

.github/workflows/validate-nightly-binaries.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
name: Validate nightly binaries (all OS)
1+
# Scheduled validation of the nightly binaries
2+
name: cron
23

34
on:
45
schedule:
@@ -8,7 +9,7 @@ on:
89
workflow_dispatch:
910
push:
1011
branches:
11-
main
12+
- main
1213
paths:
1314
- .github/workflows/validate-nightly-binaries.yml
1415
- .github/workflows/validate-linux-binaries.yml
@@ -24,7 +25,7 @@ on:
2425
- .test/smoke_test/*
2526

2627
jobs:
27-
validate-nightly-binaries:
28+
nightly:
2829
uses: ./.github/workflows/validate-binaries.yml
2930
with:
3031
channel: nightly

.github/workflows/validate-release-binaries.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
name: Validate release binaries (all OS)
1+
# Scheduled validation of the release binaries
2+
name: cron
23

34
on:
45
schedule:
@@ -8,7 +9,7 @@ on:
89
workflow_dispatch:
910
push:
1011
branches:
11-
main
12+
- main
1213
paths:
1314
- .github/workflows/validate-release-binaries.yml
1415
- .github/workflows/validate-linux-binaries.yml
@@ -24,7 +25,7 @@ on:
2425
- .test/smoke_test/*
2526

2627
jobs:
27-
validate-release-binaries:
28+
release:
2829
uses: ./.github/workflows/validate-binaries.yml
2930
with:
3031
channel: release

.github/workflows/validate-windows-binaries.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
os: windows
4040
channel: ${{ inputs.channel }}
4141

42-
validate-windows-binaries-conda:
42+
win-conda:
4343
needs: generate-windows-conda-matrix
4444
strategy:
4545
matrix:
@@ -57,7 +57,7 @@ jobs:
5757
installation: ${{ matrix.installation }}
5858
python_version: ${{ matrix.python_version }}
5959

60-
validate-windows-binaries-wheel:
60+
win-wheel:
6161
needs: generate-windows-wheel-matrix
6262
strategy:
6363
matrix:
@@ -75,7 +75,7 @@ jobs:
7575
installation: ${{ matrix.installation }}
7676
python_version: ${{ matrix.python_version }}
7777

78-
validate-windows-libtorch-binaries:
78+
win-libt:
7979
needs: generate-windows-libtorch-matrix
8080
strategy:
8181
matrix:

0 commit comments

Comments
 (0)