Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"))

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Proactively filtering out 13.3.0 since that cuda version won't have docker iamges built for the 26.06 release

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes this is needed, this same change just got made in #853

permissions:
contents: read
test-stable-install-pip:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion ci/stable_install/install_and_test_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ci/stable_install/install_and_test_pip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading