Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.

Commit 1033c2c

Browse files
committed
gpuCI: In ci/common/build.bash, don't bail on errors in /etc/cccl.bashrc.
1 parent 4db1774 commit 1033c2c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/common/build.bash

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Thrust and CUB build script for gpuCI
1010
################################################################################
1111

12-
set -e
12+
set -e # Stop on errors.
1313

1414
# append variable value
1515
# Appends ${value} to ${variable}, adding a space before ${value} if
@@ -58,7 +58,9 @@ function join_delimit {
5858
################################################################################
5959

6060
# Get the variables the Docker container set up for us: ${CXX}, ${CUDACXX}, etc.
61+
set +e # Don't stop on errors from /etc/cccl.bashrc.
6162
source /etc/cccl.bashrc
63+
set -e # Stop on errors.
6264

6365
# Set path and build parallel level
6466
export PATH=/usr/local/cuda/bin:${PATH}
@@ -196,6 +198,7 @@ fi
196198
append CTEST_FLAGS "--output-on-failure"
197199

198200
CTEST_EXCLUSION_REGEXES=()
201+
CTEST_INCLUSION_REGEXES=()
199202

200203
if [[ "${BUILD_TYPE}" == "cpu" ]]; then
201204
CTEST_EXCLUSION_REGEXES+=("^cub" "^thrust.*cuda")

0 commit comments

Comments
 (0)