2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 01:51:22 +00:00
metaforce/ci/split-debug-linux.sh
Luke Street 4247e38349 CI: Compress Linux/macOS debug files
Installs Intel IPP on Ubuntu and macOS runners
Updates boo to fix FindIPP for new *nix path
2021-04-07 12:39:26 -04:00

7 lines
231 B
Bash
Executable File

#!/bin/bash -ex
cd build/Binaries
for f in hecl metaforce-gui metaforce visigen; do
objcopy --only-keep-debug $f $f.dbg
objcopy --strip-debug --add-gnu-debuglink=$f.dbg $f
done
tar acfv "$GITHUB_WORKSPACE"/debug.tar.xz -- *.dbg