Skip to content

Commit

Permalink
Compress the debug symbols with xz at the end
Browse files Browse the repository at this point in the history
  • Loading branch information
bmerry committed Aug 23, 2023
1 parent f2905c8 commit f276376
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -213,5 +213,20 @@ jobs:
path: ./wheelhouse/*.whl
- uses: actions/upload-artifact@v3
with:
name: debug_symbols
name: debug_symbols_uncompressed
path: ./wheelhouse/*.debug

compress-debug:
needs: [cibuildwheel]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: debug_symbols_uncompressed
- name: Compress debug symbols
run: tar -Jcvf "spead2-$(sed 's/.*"\(.*\)"/\1/' src/spead2/_version.py)-debug.tar.xz" _spead*.debug
- uses: actions/upload-artifact@v3
with:
name: debug_symbols
path: spead2-*-debug.tar.xz

0 comments on commit f276376

Please sign in to comment.