mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-17 05:07:40 +00:00
44 lines
1.6 KiB
Bash
Executable file
44 lines
1.6 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
#
|
|
# Upload Debug Information Files for this developer folder
|
|
#
|
|
# We only want .pdb and .sym files at this time -- we should not need the
|
|
# symtabs that PE files give us as the full debug symbols give us better
|
|
# coverage anyway.
|
|
#
|
|
# This script also uploads sourcemap data for Developer web pages.
|
|
#
|
|
# Prerequisites: SENTRY_AUTH_TOKEN, SENTRY_URL, SENTRY_ORG variables must
|
|
# be configured.
|
|
#
|
|
|
|
set -e
|
|
set -u
|
|
|
|
## START STANDARD BUILD SCRIPT INCLUDE
|
|
# adjust relative paths as necessary
|
|
THIS_SCRIPT="$(greadlink -f "${BASH_SOURCE[0]}" 2>/dev/null || readlink -f "${BASH_SOURCE[0]}")"
|
|
. "$(dirname "$THIS_SCRIPT")/../../../resources/build/build-utils.sh"
|
|
## END STANDARD BUILD SCRIPT INCLUDE
|
|
|
|
cd "$KEYMAN_ROOT/developer/src"
|
|
|
|
#
|
|
# Remove some additional unnecessary files: we don't want to upload these
|
|
# because they are really only used for internal test or as samples.
|
|
#
|
|
|
|
[ -f ./samples/imsample/IMSample.pdb ] && rm -f ./samples/imsample/IMSample.pdb
|
|
[ -f ./kmcmpdll/Win32/Release/kcframe.pdb ] && rm -f ./kmcmpdll/Win32/Release/kcframe.pdb
|
|
[ -f ./kmcmpdll/Win32/Debug/kcframe.pdb ] && rm -f ./kmcmpdll/Win32/Debug/kcframe.pdb
|
|
[ -f ./kmcmpdll/x64/Release/kcframe.x64.pdb ] && rm -f ./kmcmpdll/x64/Release/kcframe.x64.pdb
|
|
[ -f ./kmcmpdll/x64/Debug/kcframe.x64.pdb ] && rm -f ./kmcmpdll/x64/Debug/kcframe.x64.pdb
|
|
|
|
#
|
|
# Upload the files
|
|
#
|
|
|
|
echo "Uploading symbols for developer/"
|
|
sentry-cli upload-dif -p keyman-developer -t breakpad -t pdb . --include-sources
|
|
sentry-cli releases -p keyman-developer files "release-$VERSION_WITH_TAG" upload-sourcemaps ./TIKE/xml ./server/build ./kmlmc/dist
|