Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ on:
required: false
default: ''
type: string
outputs:
cibw_summary:
description: markdown step summary from cibuildwheel
value: jobs.build_wheels.outputs.cibw_step_summary
secrets:
pypi_token:
required: false
Expand Down Expand Up @@ -141,6 +145,8 @@ jobs:
strategy:
fail-fast: ${{ inputs.fail-fast }}
matrix: ${{fromJSON(needs.targets.outputs.matrix)}}
outputs:
cibw_summary: ${{ steps.cibw.outputs.step_summary }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
Expand All @@ -163,6 +169,7 @@ jobs:
run: |
echo "space_sep_groups=$( python -c "print('${{ inputs.test_groups }}'.replace(',', ' '))" )" >> "$GITHUB_ENV"
- name: Configure cibuildwheel
id: cibw
shell: bash
run: |
if [ -n "${{ inputs.test_extras }}" ];
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/test_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,10 @@ jobs:
test_extras: recommended
test_command: pytest --pyargs test_package
targets: ''
re-export-cibw-summary:
needs: [release]
runs-on: ubuntu-latest
steps:
- run: echo ${STEPS_PUBLISH_OUTPUTS_CIBW_SUMMARY} >> "$GITHUB_STEP_SUMMARY"
env:
STEPS_PUBLISH_OUTPUTS_CIBW_SUMMARY: ${{ needs.release.outputs.cibw_summary }}
Loading