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 625f260 commit 877de42Copy full SHA for 877de42
.github/workflows/build-python-packages.yml
@@ -90,11 +90,9 @@ jobs:
90
id: build-python
91
shell: pwsh
92
run: |
93
- Write-Host "${{ needs.generate_matrix.outputs.matrix }}"
94
$matrix = '${{ needs.generate_matrix.outputs.matrix }}' | ConvertFrom-Json -AsHashtable
95
- Write-Host "matrix is $matrix"
96
$matrixReduced = $matrix | Where-Object {$_.arch -ne "arm64" -or $_.os -ne "windows-2019"}
97
- Write-Host matrix after changes is $matrixReduced
+ $matrixReduced | Out-String | Write-Host
98
echo "matrixReduced=$($matrixReduced | ConvertTo-Json -Compress -AsArray)" >> $env:GITHUB_OUTPUT
99
100
test_python:
0 commit comments