Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 2 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ jobs:
with:
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"))
Comment on lines -45 to -46

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.

Shouldn't need these matrix filters anymore now that we're on 26.06 -- but we'll have to add a filter back here when we add CUDA 13.3 support

permissions:
contents: read
test-stable-install-pip:
Expand All @@ -56,7 +54,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 @@ -71,8 +69,6 @@ jobs:
with:
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"))
permissions:
contents: read
test-stable-install-conda:
Expand All @@ -85,7 +81,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