Skip to content

Commit 9eb229c

Browse files
authored
Don't run GPU tests on CI (#6072)
1 parent 3fd772c commit 9eb229c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

o2.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ incremental_recipe: |
120120
find $PWD -name "*.root" -delete
121121
rm -rf test_logs
122122
TESTERR=
123-
ctest -C ${CMAKE_BUILD_TYPE} -E "test_Framework" --output-on-failure ${JOBS+-j $JOBS} || TESTERR=$?
123+
ctest -C ${CMAKE_BUILD_TYPE} -LE gpu -E "test_Framework" --output-on-failure ${JOBS+-j $JOBS} || TESTERR=$?
124124
ctest -C ${CMAKE_BUILD_TYPE} -R test_Framework --output-on-failure || TESTERR=$?
125125
# Display additional logs for tests that timed out in a non-fatal way
126126
set +x
@@ -354,7 +354,7 @@ if [[ $ALIBUILD_O2_TESTS ]]; then
354354
# Clean up ROOT files created by tests in build area
355355
find $PWD -name "*.root" -delete
356356
TESTERR=
357-
ctest -C ${CMAKE_BUILD_TYPE} -E "(test_Framework)|(test_GPUsort(CUDA|HIP))" --output-on-failure ${JOBS+-j $JOBS} || TESTERR=$?
357+
ctest -C ${CMAKE_BUILD_TYPE} -LE gpu -E "(test_Framework)|(test_GPUsort(CUDA|HIP))" --output-on-failure ${JOBS+-j $JOBS} || TESTERR=$?
358358
ctest -C ${CMAKE_BUILD_TYPE} -R test_Framework --output-on-failure || TESTERR=$?
359359
# Display additional logs for tests that timed out in a non-fatal way
360360
set +x

0 commit comments

Comments
 (0)