-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: replace dump_syms and symupload with @bugsplat/symbol-upload (#8)
* chore: replace dump_syms and symupload with @bugsplat/symbol-upload * chore: update README.md
- Loading branch information
Showing
8 changed files
with
39 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
crashpad/tools/symbol-upload-linux filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
#!/bin/bash | ||
export CRASHPAD_CHECKOUT_DIR=${CRASHPAD_CHECKOUT_DIR:-"$HOME/Desktop/github/crashpad"} | ||
export CRASHPAD_BUILD_DIR=${CRASHPAD_BUILD_DIR:-"$CRASHPAD_CHECKOUT_DIR/out/Default"} | ||
export PROJECT_DIR=${PROJECT_DIR:-"$HOME/Desktop/github/my-ubuntu-crasher"} | ||
export PROJECT_DIR=${PROJECT_DIR:-"/root/github/my-ubuntu-crasher/"} | ||
export CRASHPAD_DIR=${CRASHPAD_DIR:-"$PROJECT_DIR/crashpad"} | ||
export OUT_DIR=${OUT_DIR:-"$PROJECT_DIR/out"} | ||
export MODULE_NAME=${MODULE_NAME:-"myUbuntuCrasher"} | ||
export BUGSPLAT_EMAIL=${BUGSPLAT_EMAIL:-"fred@bugsplat.com"} | ||
export BUGSPLAT_PASSWORD=${BUGSPLAT_PASSWORD:-"Flintstone"} | ||
export BUGSPLAT_DATABASE=${BUGSPLAT_DATABASE:-"fred"} | ||
export BUGSPLAT_APP_NAME=${BUGSPLAT_APP_NAME:-"myUbuntuCrasher"} | ||
export BUGSPLAT_APP_VERSION=${BUGSPLAT_APP_VERSION:-"1.0.0"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
#!/bin/bash | ||
source exports.sh | ||
export SYM_FILE=$OUT_DIR/$MODULE_NAME.sym | ||
|
||
$CRASHPAD_DIR/tools/dump_syms $PROJECT_DIR/out/$MODULE_NAME > $SYM_FILE | ||
$CRASHPAD_DIR/tools/sym_upload $SYM_FILE "https://$BUGSPLAT_DATABASE.bugsplat.com/post/bp/symbol/breakpadsymbols.php?appName=$BUGSPLAT_APP_NAME&appVer=$BUGSPLAT_APP_VERSION" | ||
$CRASHPAD_DIR/tools/symbol-upload-linux -b $BUGSPLAT_DATABASE \ | ||
-a $BUGSPLAT_APP_NAME \ | ||
-v $BUGSPLAT_APP_VERSION \ | ||
-u $BUGSPLAT_EMAIL \ | ||
-p $BUGSPLAT_PASSWORD \ | ||
-d $PROJECT_DIR/out \ | ||
-f $MODULE_NAME \ | ||
--dumpSyms | ||
|