CI Remove package source files after build (#2862)

This commit is contained in:
Gyeongjae Choi 2022-07-13 17:30:58 +09:00 committed by GitHub
parent 521833b791
commit b38e16b677
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -165,6 +165,11 @@ jobs:
tar --exclude="node_modules" -cjf pyodide-build.tar.gz dist
tar cjf build-logs.tar.gz packages/build-logs
- run:
name: Clean up package source files
command: |
cd packages && find **/build ! -name '.packaged' -type f -exec rm -f {} +
- store_artifacts:
path: /root/repo/pyodide-build.tar.gz