From 19a671cc57243ec026e6acc8fde77b50c41bbf61 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 18 Aug 2026 00:55:00 -0500 Subject: [PATCH] Fix devcontainer cache version updates --- .devcontainer/cuda12.9-conda/devcontainer.json | 2 +- .devcontainer/cuda12.9-pip/devcontainer.json | 2 +- .devcontainer/cuda13.3-conda/devcontainer.json | 2 +- .devcontainer/cuda13.3-pip/devcontainer.json | 2 +- ci/release/update-version.sh | 1 + 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.devcontainer/cuda12.9-conda/devcontainer.json b/.devcontainer/cuda12.9-conda/devcontainer.json index c2eed35f1f..983c7f04c1 100644 --- a/.devcontainer/cuda12.9-conda/devcontainer.json +++ b/.devcontainer/cuda12.9-conda/devcontainer.json @@ -8,7 +8,7 @@ "BASE": "rapidsai/devcontainers:26.10-cpp-mambaforge" }, "cacheFrom": [ - "ghcr.io/rapidsai/cuvs/devcontainer:26.08-cuda12.9-conda" + "ghcr.io/rapidsai/cuvs/devcontainer:26.10-cuda12.9-conda" ] }, "runArgs": [ diff --git a/.devcontainer/cuda12.9-pip/devcontainer.json b/.devcontainer/cuda12.9-pip/devcontainer.json index 60c62ef968..aa17ed88db 100644 --- a/.devcontainer/cuda12.9-pip/devcontainer.json +++ b/.devcontainer/cuda12.9-pip/devcontainer.json @@ -8,7 +8,7 @@ "BASE": "rapidsai/devcontainers:26.10-cpp-cuda12.9-ucx1.19.0-openmpi5.0.10" }, "cacheFrom": [ - "ghcr.io/rapidsai/cuvs/devcontainer:26.08-cuda12.9-pip" + "ghcr.io/rapidsai/cuvs/devcontainer:26.10-cuda12.9-pip" ] }, "runArgs": [ diff --git a/.devcontainer/cuda13.3-conda/devcontainer.json b/.devcontainer/cuda13.3-conda/devcontainer.json index dc3038689f..5156e8b04d 100644 --- a/.devcontainer/cuda13.3-conda/devcontainer.json +++ b/.devcontainer/cuda13.3-conda/devcontainer.json @@ -8,7 +8,7 @@ "BASE": "rapidsai/devcontainers:26.10-cpp-mambaforge" }, "cacheFrom": [ - "ghcr.io/rapidsai/cuvs/devcontainer:26.08-cuda13.3-conda" + "ghcr.io/rapidsai/cuvs/devcontainer:26.10-cuda13.3-conda" ] }, "runArgs": [ diff --git a/.devcontainer/cuda13.3-pip/devcontainer.json b/.devcontainer/cuda13.3-pip/devcontainer.json index ef47a3c6c4..dfc3a7f323 100644 --- a/.devcontainer/cuda13.3-pip/devcontainer.json +++ b/.devcontainer/cuda13.3-pip/devcontainer.json @@ -8,7 +8,7 @@ "BASE": "rapidsai/devcontainers:26.10-cpp-cuda13.3-ucx1.19.0-openmpi5.0.10" }, "cacheFrom": [ - "ghcr.io/rapidsai/cuvs/devcontainer:26.08-cuda13.3-pip" + "ghcr.io/rapidsai/cuvs/devcontainer:26.10-cuda13.3-pip" ] }, "runArgs": [ diff --git a/ci/release/update-version.sh b/ci/release/update-version.sh index 3e66c42a7d..03cbb95f92 100755 --- a/ci/release/update-version.sh +++ b/ci/release/update-version.sh @@ -160,6 +160,7 @@ sed_runner "s/version = \".*\"/version = \"${NEXT_FULL_RUST_TAG}\"/g" rust/Cargo # .devcontainer files find .devcontainer/ -type f -name devcontainer.json -print0 | while IFS= read -r -d '' filename; do sed_runner "s@rapidsai/devcontainers:[0-9.]*@rapidsai/devcontainers:${NEXT_SHORT_TAG}@g" "${filename}" + sed_runner "s@ghcr.io/rapidsai/cuvs/devcontainer:[0-9.]*@ghcr.io/rapidsai/cuvs/devcontainer:${NEXT_SHORT_TAG}@g" "${filename}" sed_runner "s@rapidsai/devcontainers/features/ucx:[0-9.]*@rapidsai/devcontainers/features/ucx:${NEXT_SHORT_TAG_PEP440}@" "${filename}" sed_runner "s@rapidsai/devcontainers/features/cuda:[0-9.]*@rapidsai/devcontainers/features/cuda:${NEXT_SHORT_TAG_PEP440}@" "${filename}" sed_runner "s@rapidsai/devcontainers/features/rapids-build-utils:[0-9.]*@rapidsai/devcontainers/features/rapids-build-utils:${NEXT_SHORT_TAG_PEP440}@" "${filename}"