Skip to content

Commit de8f786

Browse files
authored
fix(docker): use versioned -latest tag for all rapidsai images (#871)
In rapidsai/build-planning#187 we switched the docker image tagging scheme over to include the CalVer information. This was done to allow us to make changes to the images during burndown without breaking release pipelines. This PR moves all of the existing `latest` tags to the newer versioned tag `25.08-latest` and also modifies the `update_version.sh` script to bump that version at branch creation time. xref: rapidsai/build-planning#187 Authors: - Gil Forsyth (https://github.com/gforsyth) - James Lamb (https://github.com/jameslamb) Approvers: - James Lamb (https://github.com/jameslamb) URL: #871
1 parent 492d474 commit de8f786

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
arch: "amd64"
4141
branch: ${{ inputs.branch }}
4242
build_type: ${{ inputs.build_type || 'branch' }}
43-
container_image: "rapidsai/ci-conda:latest"
43+
container_image: "rapidsai/ci-conda:25.08-latest"
4444
date: ${{ inputs.date }}
4545
node_type: "cpu4"
4646
script: "ci/build_docs.sh"

.github/workflows/pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
build_type: pull-request
4949
node_type: "cpu4"
5050
arch: "amd64"
51-
container_image: "rapidsai/ci-conda:latest"
51+
container_image: "rapidsai/ci-conda:25.08-latest"
5252
script: "ci/build_docs.sh"
5353
telemetry-summarize:
5454
# This job must use a self-hosted runner to record telemetry traces.

ci/release/update-version.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@ echo "${NEXT_FULL_TAG}" > VERSION
3131

3232
for FILE in .github/workflows/*.yaml; do
3333
sed_runner "/shared-workflows/ s/@.*/@branch-${NEXT_SHORT_TAG}/g" "${FILE}"
34+
sed_runner "s/:[0-9]*\\.[0-9]*-/:${NEXT_SHORT_TAG}-/g" "${FILE}"
3435
done

0 commit comments

Comments
 (0)