diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 9f08f0d8..d5fff678 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -43,7 +43,8 @@ jobs: build_type: nightly matrix_name: wheels-test # TODO: add custom dependency matrix for stable install tests - matrix_filter: map(select(.CUDA_VER != "13.2.0")) + # Proactively filtering out 13.3 jobs which won't have docker images for the 26.06 release + matrix_filter: map(select(.CUDA_VER != "13.3.0")) permissions: contents: read test-stable-install-pip: @@ -56,7 +57,7 @@ jobs: build_type: pull-request arch: "${{matrix.ARCH}}" node_type: "gpu-${{ matrix.GPU }}-latest-1" - container_image: "rapidsai/citestwheel:26.04-cuda${{ matrix.CUDA_VER }}-${{ matrix.LINUX_VER }}-py${{ matrix.PY_VER }}-${{ matrix.ARCH }}" + container_image: "rapidsai/citestwheel:26.06-cuda${{ matrix.CUDA_VER }}-${{ matrix.LINUX_VER }}-py${{ matrix.PY_VER }}-${{ matrix.ARCH }}" script: | ./ci/stable_install/install_and_test_pip.sh --cuda ${{ matrix.CUDA_VER }} --python ${{ matrix.PY_VER }} permissions: @@ -72,7 +73,8 @@ jobs: build_type: nightly matrix_name: conda-python-tests # TODO: add custom dependency matrix for stable install tests - matrix_filter: map(select(.CUDA_VER != "13.2.0")) + # Proactively filtering out 13.3 jobs which won't have docker images for the 26.06 release + matrix_filter: map(select(.CUDA_VER != "13.3.0")) permissions: contents: read test-stable-install-conda: @@ -85,7 +87,7 @@ jobs: build_type: pull-request node_type: "gpu-${{ matrix.GPU }}-latest-1" arch: "${{ matrix.ARCH }}" - container_image: "rapidsai/ci-conda:26.04-cuda${{ matrix.CUDA_VER }}-${{ matrix.LINUX_VER }}-py${{ matrix.PY_VER }}" + container_image: "rapidsai/ci-conda:26.06-cuda${{ matrix.CUDA_VER }}-${{ matrix.LINUX_VER }}-py${{ matrix.PY_VER }}" script: | ./ci/stable_install/install_and_test_conda.sh --cuda ${{ matrix.CUDA_VER }} --python ${{ matrix.PY_VER }} permissions: diff --git a/ci/stable_install/install_and_test_conda.sh b/ci/stable_install/install_and_test_conda.sh index ed80bd9e..a2ebd1d0 100755 --- a/ci/stable_install/install_and_test_conda.sh +++ b/ci/stable_install/install_and_test_conda.sh @@ -13,7 +13,7 @@ SCRIPT_DIR="$(dirname "${BASH_SOURCE[0]}")" source "${SCRIPT_DIR}/test_imports.sh" source "${SCRIPT_DIR}/install_rapids_doctor.sh" -STABLE_RAPIDS_VERSION="26.4.*" +STABLE_RAPIDS_VERSION="26.6.*" while [[ $# -gt 0 ]]; do case $1 in diff --git a/ci/stable_install/install_and_test_pip.sh b/ci/stable_install/install_and_test_pip.sh index 92cb2519..8bdb5d42 100755 --- a/ci/stable_install/install_and_test_pip.sh +++ b/ci/stable_install/install_and_test_pip.sh @@ -13,7 +13,7 @@ set -euo pipefail -STABLE_RAPIDS_VERSION="26.4.*" +STABLE_RAPIDS_VERSION="26.6.*" SCRIPT_DIR="$(dirname "${BASH_SOURCE[0]}")" source "${SCRIPT_DIR}/bootstrap/pip.sh"