diff --git a/.devcontainer/rapids.Dockerfile b/.devcontainer/rapids.Dockerfile index 064296ce..bce2a0d3 100644 --- a/.devcontainer/rapids.Dockerfile +++ b/.devcontainer/rapids.Dockerfile @@ -61,7 +61,8 @@ ENV LIBCUDF_KERNEL_CACHE_PATH="/home/coder/cudf/cpp/build/${PYTHON_PACKAGE_MANAG ### # sccache configuration ### -ENV AWS_ROLE_ARN="arn:aws:iam::279114543810:role/nv-gha-token-sccache-devs" +ENV AWS_IDP_URL="https://token.rapids.nvidia.com" +ENV AWS_ROLE_ARN="arn:aws:iam::279114543810:role/rapids-token-sccache-devs" ENV SCCACHE_REGION="us-east-2" ENV SCCACHE_BUCKET="rapids-sccache-devs" ENV SCCACHE_S3_USE_PREPROCESSOR_CACHE_MODE=true diff --git a/features/src/utils/devcontainer-feature.json b/features/src/utils/devcontainer-feature.json index c0c088a9..b0bdf81c 100644 --- a/features/src/utils/devcontainer-feature.json +++ b/features/src/utils/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "devcontainer-utils", "id": "utils", - "version": "26.6.0", + "version": "26.6.1", "description": "A feature to install RAPIDS devcontainer utility scripts", "containerEnv": { "BASH_ENV": "/etc/bash.bash_env" diff --git a/features/src/utils/opt/devcontainer/bin/sccache/dist/status.sh b/features/src/utils/opt/devcontainer/bin/sccache/dist/status.sh index 9485b29c..4ecaee92 100755 --- a/features/src/utils/opt/devcontainer/bin/sccache/dist/status.sh +++ b/features/src/utils/opt/devcontainer/bin/sccache/dist/status.sh @@ -50,12 +50,12 @@ _sccache_dist_status() { if [[ "$f" != json ]] && ! test -n "${no_temps:+x}"; then echo -n "preprocessed tempfiles: " - echo -n "$(ls -All /tmp/.sccache_temp/.tmp* 2>/dev/null | wc -l) " - echo " ($(du -ch /tmp/.sccache_temp/.tmp* 2>/dev/null | tail -n1 | cut -f1))" + echo -n "$(ls -All /tmp/sccache/.tmp* 2>/dev/null | wc -l) " + echo " ($(du -ch /tmp/sccache/.tmp* 2>/dev/null | tail -n1 | cut -f1))" echo -n "nvcc internal tempfiles: " - echo -n "$(ls -All /tmp/.sccache_temp/nvcc/*/* 2>/dev/null | wc -l)" - echo " ($(du -ch /tmp/.sccache_temp/nvcc/* 2>/dev/null | tail -n1 | cut -f1))" + echo -n "$(ls -All /tmp/sccache/nvcc/.tmp*/* 2>/dev/null | wc -l)" + echo " ($(du -ch /tmp/sccache/nvcc/.tmp* 2>/dev/null | tail -n1 | cut -f1))" echo fi