From a32e30e4bd95d4e35ca0388fc44c246edc499fde Mon Sep 17 00:00:00 2001 From: Robert Cohn Date: Tue, 14 May 2024 14:17:23 -0500 Subject: [PATCH] disable gpu and ct tests in pr testing --- .github/workflows/pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 7cbaf421f..c90947b3a 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -49,10 +49,10 @@ jobs: - name: Configure/Build for a domain run: | source /opt/intel/oneapi/setvars.sh - cmake -DREF_BLAS_ROOT=${PWD}/lapack/install -DREF_LAPACK_ROOT=${PWD}/lapack/install -DTARGET_DOMAINS=${{ matrix.domain }} -B build + cmake -DREF_BLAS_ROOT=${PWD}/lapack/install -DREF_LAPACK_ROOT=${PWD}/lapack/install -DENABLE_MKLGPU_BACKEND=off -DTARGET_DOMAINS=${{ matrix.domain }} -B build cmake --build build ${PARALLEL} - name: Run tests run: | source /opt/intel/oneapi/setvars.sh # Run tests, skip GPU tests - ctest --test-dir build ${PARALLEL} -E 'gpu$' + ctest --test-dir build ${PARALLEL} -E 'ct$'