diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 820d51c..bbdba68 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -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 @@ -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