Skip to content

Commit

Permalink
simple filter
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-b-miller committed Oct 3, 2024
1 parent 519f0c1 commit 1201f1f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ jobs:
script: "ci/test_conda.sh true"
run_codecov: false
# This selects "ARCH=amd64 + the latest supported Python + CUDA".
matrix_filter: map(select(.ARCH == "amd64" and (.CUDA_VER|split(".")|map(tonumber)|.[0]) == 12)) | max_by(.PY_VER|split(".")|map(tonumber))
matrix_filter: map(select(.ARCH == "amd64" and .CUDA_VER == "12.5" and .PY_VER == "3.11"))

build-wheels:
needs:
- compute-matrix
Expand All @@ -95,7 +96,8 @@ jobs:
build_type: pull-request
script: "ci/test_wheel.sh true"
# This selects "ARCH=amd64 + the latest supported Python + CUDA".
matrix_filter: map(select(.ARCH == "amd64" and (.CUDA_VER|split(".")|map(tonumber)|.[0]) == 12)) | max_by(.PY_VER|split(".")|map(tonumber))
matrix_filter: map(select(.ARCH == "amd64" and .CUDA_VER == "12.5" and .PY_VER == "3.11"))

build-docs:
needs:
- build-conda
Expand Down

0 comments on commit 1201f1f

Please sign in to comment.