From cad592159afc1a211bd6934a6b6b32eb3e52326f Mon Sep 17 00:00:00 2001 From: AJ Schmidt Date: Sat, 11 Feb 2023 18:37:18 -0500 Subject: [PATCH 1/2] Update `sccache` bucket This PR updates the `sccache` bucket and region used for `thrust` builds. We are moving all `sccache` users to this new bucket since it is in the same AWS region as the rest of our CI infrastructure. This PR depends on https://github.com/NVIDIA/cccl/pull/19. --- ci/common/build.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/common/build.bash b/ci/common/build.bash index 6bcad7cc0..37aafaf8b 100755 --- a/ci/common/build.bash +++ b/ci/common/build.bash @@ -78,8 +78,8 @@ elif [[ "${BUILD_MODE}" == "pull-request" || "${BUILD_MODE}" == "branch" ]]; the export ENABLE_SCCACHE="gpuCI" # Change to 'thrust-aarch64' if we add aarch64 builds to gpuCI: export SCCACHE_S3_KEY_PREFIX=thrust-linux64 # [linux64] - export SCCACHE_BUCKET=rapids-sccache - export SCCACHE_REGION=us-west-2 + export SCCACHE_BUCKET=rapids-sccache-east + export SCCACHE_REGION=us-east-2 export SCCACHE_IDLE_TIMEOUT=32768 else export ENABLE_SCCACHE="local" From a3990be7a4181196c8ad4306e6aea0195d94e39c Mon Sep 17 00:00:00 2001 From: AJ Schmidt Date: Tue, 14 Feb 2023 11:04:44 -0500 Subject: [PATCH 2/2] update `SDK_VER` to match `cccl` this commit updates the `SDK_VER` axis variable to match the version used by `cccl` below. this will ensure that `thrust` is always using the latest `cccl` images. - https://github.com/NVIDIA/cccl/blob/a5b457865c780b274837325ad749324331d312fe/ci/axis/docker.yml#L20 --- ci/axis/cpu.yml | 2 +- ci/axis/gpu.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/axis/cpu.yml b/ci/axis/cpu.yml index bd05252b4..3cfa7400c 100644 --- a/ci/axis/cpu.yml +++ b/ci/axis/cpu.yml @@ -7,7 +7,7 @@ SDK_TYPE: - cuda SDK_VER: - - 11.5.1-devel + - 11.5.2-devel OS_TYPE: - ubuntu diff --git a/ci/axis/gpu.yml b/ci/axis/gpu.yml index 782df455c..e5126f23b 100644 --- a/ci/axis/gpu.yml +++ b/ci/axis/gpu.yml @@ -7,7 +7,7 @@ SDK_TYPE: - cuda SDK_VER: - - 11.5.1-devel + - 11.5.2-devel OS_TYPE: - ubuntu