From 486bf96ea297891aaa3ec7acf8ad1bbe7ed1762f Mon Sep 17 00:00:00 2001 From: James Lamb Date: Fri, 6 Dec 2024 11:29:24 -0800 Subject: [PATCH] just run Python 3.12 builds --- .github/workflows/pr.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 170aa2bfc6..bc2434a5d9 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -153,6 +153,9 @@ jobs: with: build_type: pull-request script: ci/build_wheel_pylibcugraph.sh + # build for every combination of arch and CUDA version, but only for the latest Python + # TODO: remove this before merging + matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber))) # wheel-tests-pylibcugraph: # needs: [wheel-build-pylibcugraph, changed-files] # secrets: inherit @@ -168,6 +171,9 @@ jobs: with: build_type: pull-request script: ci/build_wheel_cugraph.sh + # build for every combination of arch and CUDA version, but only for the latest Python + # TODO: remove this before merging + matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber))) wheel-tests-cugraph: needs: [wheel-build-cugraph, changed-files] secrets: inherit