We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ecc2ac commit b7eac0cCopy full SHA for b7eac0c
.github/workflows/wheel-windows-build.yaml
@@ -28,7 +28,7 @@ jobs:
28
outputs:
29
MATRIX: ${{ steps.compute-matrix.outputs.MATRIX }}
30
steps:
31
- - name: Compute Python Test Matrix
+ - name: Compute Build Matrix
32
id: compute-matrix
33
env:
34
MATRIX: ${{ inputs.matrix }}
@@ -42,7 +42,11 @@ jobs:
42
- compute-matrix
43
strategy:
44
fail-fast: false
45
- matrix: ${{ fromJSON(needs.compute-matrix.outputs.MATRIX) }}
+ matrix:
46
+ - {"PY_VER": "3.10", "CUDA_VER": "12.8.0"}
47
+ - {"PY_VER": "3.11", "CUDA_VER": "12.8.0"}
48
+ - {"PY_VER": "3.12", "CUDA_VER": "12.8.0"}
49
+ - {"PY_VER": "3.13", "CUDA_VER": "12.8.0"}
50
runs-on: windows-2022
51
52
- uses: actions/checkout@v4
0 commit comments