Skip to content

Commit

Permalink
upload symbols after build
Browse files Browse the repository at this point in the history
  • Loading branch information
levinli303 committed Apr 7, 2020
1 parent b80315d commit 0a26719
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/appcenter-post-build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
SYMBOL_DIRECTORY=${APPCENTER_SOURCE_DIRECTORY}/app/build/intermediates/cmake/release/obj
cd $SYMBOL_DIRECTORY

SYMBOL_ZIP_PATH="symbols.zip"
zip -vr $SYMBOL_ZIP_PATH * -x "*.DS_Store"

appcenter crashes upload-symbols --breakpad $SYMBOL_ZIP_PATH --app $APP_IDENTIFIER --token $APP_CENTER_TOKEN --disable-telemetry --debug
6 changes: 6 additions & 0 deletions app/appcenter-post-clone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,9 @@ git clone https://github.com/eyvallah/Celestia

# Install gettext, needed for translation
brew install gettext

# Install appcenter cli to upload symbols
brew install node
brew unlink node@6
brew link --overwrite node
npm install -g appcenter-cli

0 comments on commit 0a26719

Please sign in to comment.