File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 27
27
28
28
if [[ ${TARGET_OS} == ' windows' ]]; then
29
29
python ./test/smoke_test/smoke_test.py
30
- elif [[ ${TARGET_OS} == ' aarch64- linux' ]]; then
30
+ elif [[ ${TARGET_OS} == ' linux-aarch64 ' ]]; then
31
31
python3 ./test/smoke_test/smoke_test.py --package=torchonly
32
32
else
33
33
python3 ./test/smoke_test/smoke_test.py
Original file line number Diff line number Diff line change 54
54
script : |
55
55
set -ex
56
56
export ENV_NAME="conda-env-${{ github.run_id }}"
57
- export TARGET_OS="aarch64- linux"
57
+ export TARGET_OS="linux-aarch64 "
58
58
eval "$(conda shell.bash hook)"
59
59
60
60
# Standart case: Validate binaries
Original file line number Diff line number Diff line change 32
32
options :
33
33
- windows
34
34
- linux
35
+ - linux-aarch64
35
36
- macos
36
37
- all
37
38
channel :
65
66
channel : ${{ inputs.channel }}
66
67
ref : ${{ inputs.ref || github.ref }}
67
68
69
+ linux :
70
+ if : inputs.os == 'linux-aarch64'
71
+ uses : ./.github/workflows/validate-aarch64-linux-binaries.yml
72
+ with :
73
+ channel : ${{ inputs.channel }}
74
+ ref : ${{ inputs.ref || github.ref }}
75
+
68
76
mac :
69
77
if : inputs.os == 'macos' || inputs.os == 'all'
70
78
uses : ./.github/workflows/validate-macos-binaries.yml
You can’t perform that action at this time.
0 commit comments