We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e695ef4 commit d773657Copy full SHA for d773657
.github/workflows/validate-linux-binaries.yml
@@ -69,7 +69,9 @@ jobs:
69
if [[ ${{ matrix.package_type }} == "libtorch" ]]; then
70
curl ${{ matrix.installation }} -o libtorch.zip
71
unzip libtorch.zip
72
- cd libtorch && ${PWD}/../check_binary.sh
+ if [[ ${{ matrix.libtorch_variant }} == "static-with-deps" ]]; then
73
+ cd libtorch && ${PWD}/../check_binary.sh
74
+ fi
75
else
76
eval $INSTALLATION
77
python ./test/smoke_test/smoke_test.py
0 commit comments