Skip to content

Commit

Permalink
add more debug commands on mac pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
charly-bg committed Sep 6, 2024
1 parent 8dff588 commit a901fe2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,23 +48,27 @@ jobs:
CSC_KEY_PASSWORD: ${{secrets.MACOS_CSC_KEY_PASSWORD}}
EP_PRE_RELEASE: true
run: |
echo ">>>>>>>>>>>>> 10 largest files"
find / -type f -exec du -h {} + | sort -rh | head -n 10
hdiutil info
df -h
diskutil list
# npm run publish
echo "tsc -p ."
echo ">>>>>>>>>>>>>tsc -p ."
npx tsc -p .
hdiutil info
df -h
echo "electron-builder --publish never"
echo ">>>>>>>>>>>>>electron-builder --publish never"
npx electron-builder --publish never
hdiutil info
df -h
echo "electron-builder --publish always"
echo ">>>>>>>>>>>>>electron-builder --publish always"
npx electron-builder --publish always
hdiutil info
df -h
echo ">>>>>>>>>>>>> 10 largest files"
find / -type f -exec du -h {} + | sort -rh | head -n 10
# - name: Notarize MacOS (dmg)
# if: ${{github.ref == 'refs/heads/main'}}
# env:
Expand Down

0 comments on commit a901fe2

Please sign in to comment.