Skip to content

Commit

Permalink
More debuggering
Browse files Browse the repository at this point in the history
  • Loading branch information
davisp committed Feb 17, 2025
1 parent a4a8201 commit bb39568
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,25 @@ jobs:
MATRIX=$(.github/scripts/generate-build-matrix.py)
echo "matrix=${MATRIX}" >> $GITHUB_OUTPUT
debug:
needs:
- generate-matrix
name: Debuggering
runs-on: ubuntu-latest
steps:
- name: Show Matrix
run: |
echo "${{ needs.generate-matrix.outputs.matrix }}"
shell: bash

build:
needs:
- generate-matrix
name: Build - ${{ matrix.platform }} - ${{ matrix.version }} - ${{ matrix.linkage }}
strategy:
fail-fast: false
matrix:
matrix: ${{ fromJson(needs.setup.outputs.mymatrix) }}
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
runs-on: ${{ matrix.os }}
container: ${{ matrix.manylinux || '' }}
env:
Expand Down

0 comments on commit bb39568

Please sign in to comment.