Skip to content
Merged
10 changes: 10 additions & 0 deletions .github/workflows/test-wheel-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,16 @@ jobs:
LOCAL_CTK: ${{ matrix.LOCAL_CTK }}
run: run-tests bindings

- name: Run cuda.bindings examples
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0' }}
env:
CUDA_VER: ${{ matrix.CUDA_VER }}
LOCAL_CTK: ${{ matrix.LOCAL_CTK }}
run: |
pushd cuda_bindings
${SANITIZER_CMD} pytest -ra -s -vv examples/
popd

- name: Run cuda.core tests
env:
CUDA_VER: ${{ matrix.CUDA_VER }}
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/test-wheel-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,17 @@ jobs:
shell: bash --noprofile --norc -xeuo pipefail {0}
run: run-tests bindings

- name: Run cuda.bindings examples
if: ${{ env.SKIP_CUDA_BINDINGS_TEST == '0' }}
env:
CUDA_VER: ${{ matrix.CUDA_VER }}
LOCAL_CTK: ${{ matrix.LOCAL_CTK }}
shell: bash --noprofile --norc -xeuo pipefail {0}
run: |
pushd cuda_bindings
${SANITIZER_CMD} pytest -ra -s -vv examples/
popd

- name: Run cuda.core tests
env:
CUDA_VER: ${{ matrix.CUDA_VER }}
Expand Down
Loading