add stripping

This commit is contained in:
qimiko 2024-02-02 16:53:12 -07:00
parent 15df48935a
commit 5fc6b43d1b
No known key found for this signature in database
GPG key ID: D2D404DD810FE0E3

View file

@ -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: