Skip to content

Commit 6837d84

Browse files
committed
Fix syntax
1 parent 1ed2dd1 commit 6837d84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-wheel-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,14 +272,14 @@ jobs:
272272
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0' && matrix.PY_VER == '3.13' }}
273273
id: abicheck
274274
run: |
275-
if [ python ci/tools/abicheck.py check cuda.bindings cuda/bindings/abi/ ]; then
275+
if (python ci/tools/abicheck.py check cuda.bindings cuda/bindings/abi/); then
276276
echo "ABI check passed"
277277
else
278278
echo "ABI check failed"
279279
echo "The changed ABI data from this PR is in the cuda_bindings_abi artifact."
280280
echo "If these changes are expected, copy the files in that artifact to cuda/bindings/abi/"
281281
echo "and commit the changes."
282-
abicheck.py regenerate cuda.bindings new-abi
282+
python ci/tools/abicheck.py regenerate cuda.bindings new-abi/
283283
exit 1
284284
fi
285285

0 commit comments

Comments
 (0)