mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 19:15:05 -05:00
add stripping
This commit is contained in:
parent
15df48935a
commit
5fc6b43d1b
1 changed files with 6 additions and 1 deletions
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
@ -147,10 +147,15 @@ jobs:
|
|||
cmake --build . --config RelWithDebInfo --parallel
|
||||
rm ${{ github.workspace }}/bin/nightly/resources/.geode_cache
|
||||
|
||||
- name: Dump symbols
|
||||
- name: Dump Symbols
|
||||
run: "${{ steps.breakpad-tools.outputs.binary-path }} ./bin/nightly/Geode.${{ matrix.config.id }}.so -o ./bin/nightly/Geode.${{ matrix.config.id }}.so.sym"
|
||||
if: matrix.config.id == 'android32' || matrix.config.id == 'android64'
|
||||
|
||||
# hardcoding toolchain path :(
|
||||
- name: Strip Binaries
|
||||
run: "$NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/llvm-strip ./bin/nightly/Geode.${{ matrix.config.id }}.so"
|
||||
if: matrix.config.id == 'android32' || matrix.config.id == 'android64'
|
||||
|
||||
- name: Upload Artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue