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

Commit fef86fa

Browse files
brycelelbachalliepiper
authored andcommitted
gpuCI: In ci/common/build.bash, don't bail on errors in /etc/cccl.bashrc.
1 parent 2672cb3 commit fef86fa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/common/build.bash

+3-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
@@ -65,7 +65,9 @@ function join_delimit {
6565
################################################################################
6666

6767
# Get the variables the Docker container set up for us: ${CXX}, ${CUDACXX}, etc.
68+
set +e # Don't stop on errors from /etc/cccl.bashrc.
6869
source /etc/cccl.bashrc
70+
set -e # Stop on errors.
6971

7072
# Set path.
7173
export PATH=/usr/local/cuda/bin:${PATH}

0 commit comments

Comments
 (0)