Skip to content

Commit 9a5f066

Browse files
committed
Use conda env create --yes instead of --force
Ensure that `ctest` is called with `--no-tests=error`.
1 parent 5b67619 commit 9a5f066

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

ci/build_docs.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright (c) 2023, NVIDIA CORPORATION.
2+
# Copyright (c) 2023-2024, NVIDIA CORPORATION.
33

44
set -euo pipefail
55

@@ -11,7 +11,7 @@ rapids-dependency-file-generator \
1111
--file_key docs \
1212
--matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee env.yaml
1313

14-
rapids-mamba-retry env create --force -f env.yaml -n docs
14+
rapids-mamba-retry env create --yes -f env.yaml -n docs
1515
conda activate docs
1616

1717
rapids-print-env

ci/check_style.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright (c) 2020-2023, NVIDIA CORPORATION.
2+
# Copyright (c) 2020-2024, NVIDIA CORPORATION.
33

44
set -euo pipefail
55

@@ -11,7 +11,7 @@ rapids-dependency-file-generator \
1111
--file_key checks \
1212
--matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee env.yaml
1313

14-
rapids-mamba-retry env create --force -f env.yaml -n checks
14+
rapids-mamba-retry env create --yes -f env.yaml -n checks
1515

1616
set +u
1717
conda activate checks

ci/test_cpp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ rapids-dependency-file-generator \
1111
--file_key test \
1212
--matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch)" | tee env.yaml
1313

14-
rapids-mamba-retry env create --force -f env.yaml -n test
14+
rapids-mamba-retry env create --yes -f env.yaml -n test
1515

1616
# Temporarily allow unbound variables for conda activation.
1717
set +u

0 commit comments

Comments
 (0)