From 8e0aaa750c042234f10bd6209f9d79c5414328e4 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 21 Jan 2025 18:23:23 -0600 Subject: [PATCH] Temporarily skip CUDA 11 wheel CI --- .github/workflows/pr.yaml | 3 +++ .github/workflows/test.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 91f51bd90d..ca85c5c2e3 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -150,6 +150,9 @@ jobs: with: build_type: pull-request script: ci/test_wheel_cuvs.sh + # CUDA 11 wheel CI is disabled until + # https://github.com/rapidsai/build-planning/issues/137 is resolved. + matrix_filter: map(select(.CUDA_VER | startswith("11") | not)) devcontainer: secrets: inherit uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.02 diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e3bf5d16f2..cf081d5797 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -49,3 +49,6 @@ jobs: date: ${{ inputs.date }} sha: ${{ inputs.sha }} script: ci/test_wheel_cuvs.sh + # CUDA 11 wheel CI is disabled until + # https://github.com/rapidsai/build-planning/issues/137 is resolved. + matrix_filter: map(select(.CUDA_VER | startswith("11") | not))