Skip to content

Commit 0a26719

Browse files
committed
upload symbols after build
1 parent b80315d commit 0a26719

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

app/appcenter-post-build.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
SYMBOL_DIRECTORY=${APPCENTER_SOURCE_DIRECTORY}/app/build/intermediates/cmake/release/obj
2+
cd $SYMBOL_DIRECTORY
3+
4+
SYMBOL_ZIP_PATH="symbols.zip"
5+
zip -vr $SYMBOL_ZIP_PATH * -x "*.DS_Store"
6+
7+
appcenter crashes upload-symbols --breakpad $SYMBOL_ZIP_PATH --app $APP_IDENTIFIER --token $APP_CENTER_TOKEN --disable-telemetry --debug

app/appcenter-post-clone.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,9 @@ git clone https://github.com/eyvallah/Celestia
1010

1111
# Install gettext, needed for translation
1212
brew install gettext
13+
14+
# Install appcenter cli to upload symbols
15+
brew install node
16+
brew unlink node@6
17+
brew link --overwrite node
18+
npm install -g appcenter-cli

0 commit comments

Comments
 (0)