File tree Expand file tree Collapse file tree 1 file changed +19
-10
lines changed Expand file tree Collapse file tree 1 file changed +19
-10
lines changed Original file line number Diff line number Diff line change 1212 workflow_dispatch :
1313
1414jobs :
15- generate_matrix :
16- runs-on : ubuntu-latest
17- outputs :
18- matrix : " ${{ steps.set-matrix.outputs.matrix }}"
19- steps :
20- - uses : " actions/checkout@v3"
21- - id : set-matrix
22- run : " python3 .github/scripts/generate_windows_matrix_build.py matrix"
15+ # generate_matrix:
16+ # runs-on: ubuntu-latest
17+ # outputs:
18+ # matrix: "${{ steps.set-matrix.outputs.matrix }}"
19+ # steps:
20+ # - uses: "actions/checkout@v3"
21+ # - id: set-matrix
22+ # run: "python3 .github/scripts/generate_windows_matrix_build.py matrix"
2323 msvc-build :
24- needs : generate_matrix
24+ # needs: generate_matrix
2525 strategy :
2626 fail-fast : true
27- matrix : " ${{fromJson(needs.generate_matrix.outputs.matrix)}}"
27+ # TODO: Fix matrix generation? Broke recently due to changes in github actions
28+ # matrix: "${{fromJson(needs.generate_matrix.outputs.matrix)}}"
29+ matrix :
30+ preset :
31+ - win32
32+ - x64
33+ - win32_uwp
34+ - x64_uwp
35+ - arm64_uwp
36+ - arm_uwp
2837
2938 uses : " ./.github/workflows/msvc-build-preset.yml"
3039 with :
You can’t perform that action at this time.
0 commit comments