From 2d1a3b7080f261edec32eba23e53290374b5aff3 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 21 Jan 2025 18:15:58 -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 95d648f8e6..b16a3eb695 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -184,6 +184,9 @@ jobs: with: build_type: pull-request script: ci/test_wheel.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: needs: telemetry-setup secrets: inherit diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 931a1389bc..1e87f2fb9f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -59,3 +59,6 @@ jobs: date: ${{ inputs.date }} sha: ${{ inputs.sha }} script: ci/test_wheel.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))