File tree 6 files changed +25
-19
lines changed
6 files changed +25
-19
lines changed Original file line number Diff line number Diff line change 41
41
- all
42
42
43
43
jobs :
44
- validate-windows-binaries :
44
+ win :
45
45
if : inputs.os == 'windows' || inputs.os == 'all'
46
46
uses : ./.github/workflows/validate-windows-binaries.yml
47
47
with :
48
48
channel : ${{ inputs.channel }}
49
49
50
- validate- linux-binaries :
50
+ linux :
51
51
if : inputs.os == 'linux' || inputs.os == 'all'
52
52
uses : ./.github/workflows/validate-linux-binaries.yml
53
53
with :
54
54
channel : ${{ inputs.channel }}
55
55
56
- validate- mac-binaries :
56
+ mac :
57
57
if : inputs.os == 'macos' || inputs.os == 'all'
58
58
uses : ./.github/workflows/validate-macos-binaries.yml
59
59
with :
Original file line number Diff line number Diff line change 39
39
os : linux
40
40
channel : ${{ inputs.channel }}
41
41
42
- validate- linux-binaries -conda :
42
+ linux-conda :
43
43
needs : generate-linux-conda-matrix
44
44
strategy :
45
45
matrix :
58
58
dev_toolset : ' '
59
59
package_type : conda
60
60
target_os : linux
61
- validate-linux-binaries-wheels :
61
+
62
+ linux-wheel :
62
63
needs : generate-linux-wheel-matrix
63
64
strategy :
64
65
matrix :
78
79
package_type : wheel
79
80
target_os : linux
80
81
81
- validate- linux-libtorch-binaries :
82
+ linux-libt :
82
83
needs : generate-linux-libtorch-matrix
83
84
strategy :
84
85
matrix :
Original file line number Diff line number Diff line change 45
45
os : macos
46
46
channel : ${{ inputs.channel }}
47
47
48
- validate-macos- arm64-binaries -conda :
48
+ mac- arm64-conda :
49
49
needs : generate-macos-arm64-conda-matrix
50
50
strategy :
51
51
matrix :
63
63
desired_cuda : ${{ matrix.desired_cuda }}
64
64
package_type : conda
65
65
target_os : macos
66
- validate-macos-arm64-binaries-wheel :
66
+
67
+ mac-arm64-wheel :
67
68
needs : generate-macos-arm64-wheel-matrix
68
69
strategy :
69
70
matrix :
81
82
desired_cuda : ${{ matrix.desired_cuda }}
82
83
package_type : wheel
83
84
target_os : macos
84
- validate-macos-x86_64-binaries-conda :
85
+
86
+ mac-x64-conda :
85
87
needs : generate-macos-x86_64-conda-matrix
86
88
strategy :
87
89
matrix :
99
101
desired_cuda : ${{ matrix.desired_cuda }}
100
102
package_type : conda
101
103
target_os : macos
102
- validate-macos-x86_64-binaries-wheel :
104
+
105
+ mac-x64-wheel :
103
106
needs : generate-macos-x86_64-wheel-matrix
104
107
strategy :
105
108
matrix :
Original file line number Diff line number Diff line change 1
- name : Validate nightly binaries (all OS)
1
+ # Scheduled validation of the nightly binaries
2
+ name : cron
2
3
3
4
on :
4
5
schedule :
8
9
workflow_dispatch :
9
10
push :
10
11
branches :
11
- main
12
+ - main
12
13
paths :
13
14
- .github/workflows/validate-nightly-binaries.yml
14
15
- .github/workflows/validate-linux-binaries.yml
24
25
- .test/smoke_test/*
25
26
26
27
jobs :
27
- validate- nightly-binaries :
28
+ nightly :
28
29
uses : ./.github/workflows/validate-binaries.yml
29
30
with :
30
31
channel : nightly
Original file line number Diff line number Diff line change 1
- name : Validate release binaries (all OS)
1
+ # Scheduled validation of the release binaries
2
+ name : cron
2
3
3
4
on :
4
5
schedule :
8
9
workflow_dispatch :
9
10
push :
10
11
branches :
11
- main
12
+ - main
12
13
paths :
13
14
- .github/workflows/validate-release-binaries.yml
14
15
- .github/workflows/validate-linux-binaries.yml
24
25
- .test/smoke_test/*
25
26
26
27
jobs :
27
- validate- release-binaries :
28
+ release :
28
29
uses : ./.github/workflows/validate-binaries.yml
29
30
with :
30
31
channel : release
Original file line number Diff line number Diff line change 39
39
os : windows
40
40
channel : ${{ inputs.channel }}
41
41
42
- validate-windows-binaries -conda :
42
+ win -conda :
43
43
needs : generate-windows-conda-matrix
44
44
strategy :
45
45
matrix :
57
57
installation : ${{ matrix.installation }}
58
58
python_version : ${{ matrix.python_version }}
59
59
60
- validate-windows-binaries -wheel :
60
+ win -wheel :
61
61
needs : generate-windows-wheel-matrix
62
62
strategy :
63
63
matrix :
75
75
installation : ${{ matrix.installation }}
76
76
python_version : ${{ matrix.python_version }}
77
77
78
- validate-windows-libtorch-binaries :
78
+ win-libt :
79
79
needs : generate-windows-libtorch-matrix
80
80
strategy :
81
81
matrix :
You can’t perform that action at this time.
0 commit comments