From 72c3c5e4d444971cc07c56e3619feb7ba41587ef Mon Sep 17 00:00:00 2001 From: Gil Forsyth Date: Thu, 28 May 2026 12:18:27 -0400 Subject: [PATCH 1/2] fix(ci): exclude 13.2.0 from stable install testing on 26.04 (#847) This is a temporary fix for #846 to get the nightly tests passing again. There is a larger issue around the mismatch between development dependencies in our testing matrix and the dependency matrix at time of release. --- .github/workflows/test.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 349b0bef..5815e125 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -34,6 +34,10 @@ 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")) + permissions: + contents: read test-stable-install-pip: needs: stable-install-pip-test-matrix uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@release/26.06 @@ -53,6 +57,10 @@ 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: needs: stable-install-conda-test-matrix uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@release/26.06 From 317c7016fc434f7598aaebda07be648053d78ee1 Mon Sep 17 00:00:00 2001 From: Gil Forsyth Date: Fri, 29 May 2026 10:09:29 -0400 Subject: [PATCH 2/2] fix: skip stable install tests on release branches --- .github/workflows/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5815e125..c7f5e50c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -29,6 +29,7 @@ jobs: # just using the workflow to get the matrix, this isn't actually building anything we want to upload upload-artifacts: false stable-install-pip-test-matrix: + if: github.base_ref == 'main' secrets: inherit uses: rapidsai/shared-workflows/.github/workflows/compute-matrix.yaml@release/26.06 with: @@ -52,6 +53,7 @@ jobs: script: | ./ci/stable_install/install_and_test_pip.sh --cuda ${{ matrix.CUDA_VER }} --python ${{ matrix.PY_VER }} stable-install-conda-test-matrix: + if: github.base_ref == 'main' secrets: inherit uses: rapidsai/shared-workflows/.github/workflows/compute-matrix.yaml@release/26.06 with: