From 16e764f5e869602680d9ad8d2bed855d4b1ab80e Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 10 Jan 2025 16:10:55 -0600 Subject: [PATCH] Generalize test for Nvidia PyOpenCL test target to catch pocl --- ci-support.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-support.sh b/ci-support.sh index 2163d0c..a281c7f 100644 --- a/ci-support.sh +++ b/ci-support.sh @@ -435,7 +435,7 @@ test_py_project() { rewrite_pyopencl_test - if [[ $PYOPENCL_TEST = *nvi* ]]; then + if [[ $PYOPENCL_TEST = *nvi* ]] || [[ $PYOPENCL_TEST = *titan* ]]; then echo "Nvidia GPUs currently unavailable, not running tests" return fi @@ -560,7 +560,7 @@ run_examples() { rewrite_pyopencl_test - if [[ $PYOPENCL_TEST = *nvi* ]]; then + if [[ $PYOPENCL_TEST = *nvi* ]] || [[ $PYOPENCL_TEST = *titan* ]]; then echo "Nvidia GPUs currently unavailable, not running tests" return fi -- GitLab