diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ad49e360bf..c83a7d00c7 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -43,7 +43,7 @@ jobs: arch: "amd64" branch: ${{ inputs.branch }} build_type: ${{ inputs.build_type || 'branch' }} - container_image: "rapidsai/ci:latest" + container_image: "rapidsai/ci-conda:latest" date: ${{ inputs.date }} node_type: "gpu-v100-latest-1" run_script: "ci/build_docs.sh" diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index a84a5ce168..5b52433a12 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -38,7 +38,7 @@ jobs: build_type: pull-request node_type: "cpu8" arch: "amd64" - container_image: "rapidsai/ci:cuda11.8.0-ubuntu22.04-py3.10" + container_image: "rapidsai/ci-conda:cuda11.8.0-ubuntu22.04-py3.10" run_script: "ci/run_clang_tidy.sh" conda-cpp-build: needs: checks @@ -80,7 +80,7 @@ jobs: build_type: pull-request node_type: "gpu-v100-latest-1" arch: "amd64" - container_image: "rapidsai/ci:latest" + container_image: "rapidsai/ci-conda:latest" run_script: "ci/test_notebooks.sh" docs-build: needs: conda-python-build @@ -90,7 +90,7 @@ jobs: build_type: pull-request node_type: "gpu-v100-latest-1" arch: "amd64" - container_image: "rapidsai/ci:latest" + container_image: "rapidsai/ci-conda:latest" run_script: "ci/build_docs.sh" wheel-build-cuml: needs: checks diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b8ef5e9f7a..32ae5db329 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -135,7 +135,7 @@ methods to run clang-tidy on your local machine: using Docker or Conda. docker run --rm --pull always \ --mount type=bind,source="$(pwd)",target=/opt/repo --workdir /opt/repo \ -e SCCACHE_S3_NO_CREDENTIALS=1 \ - rapidsai/ci:latest /opt/repo/ci/run_clang_tidy.sh + rapidsai/ci-conda:latest /opt/repo/ci/run_clang_tidy.sh ```