Skip to content

Commit 079f555

Browse files
authored
Temporarily skip CUDA 11 wheel CI (#4876)
Due to some failures coming from libraft C++ wheels, CUDA 11 wheel CI will not pass. This PR temporarily disables CUDA 11 wheel tests until those issues can be resolved. See rapidsai/build-planning#137. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - James Lamb (https://github.com/jameslamb) URL: #4876
1 parent 9396bbb commit 079f555

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/pr.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,9 @@ jobs:
174174
with:
175175
build_type: pull-request
176176
script: ci/test_wheel_pylibcugraph.sh
177+
# CUDA 11 wheel CI is disabled until
178+
# https://github.com/rapidsai/build-planning/issues/137 is resolved.
179+
matrix_filter: map(select(.CUDA_VER | startswith("11") | not))
177180
wheel-build-cugraph:
178181
needs: wheel-build-pylibcugraph
179182
secrets: inherit
@@ -189,6 +192,9 @@ jobs:
189192
with:
190193
build_type: pull-request
191194
script: ci/test_wheel_cugraph.sh
195+
# CUDA 11 wheel CI is disabled until
196+
# https://github.com/rapidsai/build-planning/issues/137 is resolved.
197+
matrix_filter: map(select(.CUDA_VER | startswith("11") | not))
192198
devcontainer:
193199
secrets: inherit
194200
needs: telemetry-setup

.github/workflows/test.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ jobs:
4949
date: ${{ inputs.date }}
5050
sha: ${{ inputs.sha }}
5151
script: ci/test_wheel_pylibcugraph.sh
52+
# CUDA 11 wheel CI is disabled until
53+
# https://github.com/rapidsai/build-planning/issues/137 is resolved.
54+
matrix_filter: map(select(.CUDA_VER | startswith("11") | not))
5255
wheel-tests-cugraph:
5356
secrets: inherit
5457
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
@@ -58,3 +61,6 @@ jobs:
5861
date: ${{ inputs.date }}
5962
sha: ${{ inputs.sha }}
6063
script: ci/test_wheel_cugraph.sh
64+
# CUDA 11 wheel CI is disabled until
65+
# https://github.com/rapidsai/build-planning/issues/137 is resolved.
66+
matrix_filter: map(select(.CUDA_VER | startswith("11") | not))

0 commit comments

Comments
 (0)