Skip to content

Commit 1ed2dd1

Browse files
committed
Fix GHA script
1 parent f1e510e commit 1ed2dd1

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

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

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -261,14 +261,18 @@ jobs:
261261
CUDA_PATHFINDER_TEST_FIND_NVIDIA_HEADERS_STRICTNESS: see_what_works
262262
run: run-tests pathfinder
263263

264+
- name: Run cuda.bindings tests
265+
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0' }}
266+
env:
267+
CUDA_VER: ${{ matrix.CUDA_VER }}
268+
LOCAL_CTK: ${{ matrix.LOCAL_CTK }}
269+
run: run-tests bindings
270+
264271
- name: Check cuda.bindings ABI compatibility
265272
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0' && matrix.PY_VER == '3.13' }}
266273
id: abicheck
267274
run: |
268-
echo `which pytest`
269-
echo `which python`
270-
cat `which pytest`
271-
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
272276
echo "ABI check passed"
273277
else
274278
echo "ABI check failed"
@@ -287,13 +291,6 @@ jobs:
287291
path: new-abi
288292
if-no-files-found: error
289293

290-
- name: Run cuda.bindings tests
291-
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0' }}
292-
env:
293-
CUDA_VER: ${{ matrix.CUDA_VER }}
294-
LOCAL_CTK: ${{ matrix.LOCAL_CTK }}
295-
run: run-tests bindings
296-
297294
- name: Run cuda.core tests
298295
env:
299296
CUDA_VER: ${{ matrix.CUDA_VER }}

0 commit comments

Comments
 (0)