mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-16 05:39:24 +00:00
42 lines
1.4 KiB
Bash
42 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
#
|
|
# This script centralises sentry symbol uploads and releases
|
|
# Note: We must install sentry-cli on the build agents
|
|
#
|
|
|
|
|
|
## TODO: centralise debug information file (dif) uploads
|
|
|
|
|
|
function isSentryConfigured() {
|
|
if [ -z "${SENTRY_AUTH_TOKEN-}" ] || [ -z "${SENTRY_ORG-}" ] || [ -z "${SENTRY_URL-}" ]; then
|
|
echo "WARNING: Sentry environment variables SENTRY_AUTH_TOKEN, SENTRY_ORG and SENTRY_URL must be configured."
|
|
return 1
|
|
fi
|
|
return 0
|
|
}
|
|
|
|
function isSentryCliAvailable() {
|
|
which sentry-cli > /dev/null && return 0
|
|
echo "WARNING: sentry-cli could not be found. Skipping all sentry integration."
|
|
return 1
|
|
}
|
|
|
|
function makeSentryRelease() {
|
|
if isSentryConfigured; then
|
|
if isSentryCliAvailable; then
|
|
# This version tag matches the repository version tag release-x.y.z
|
|
local SENTRY_RELEASE_VERSION="release-$VERSION_WITH_TAG"
|
|
echo "Making a Sentry release for tag $SENTRY_RELEASE_VERSION"
|
|
sentry-cli releases new -p keyman-android -p keyman-developer -p keyman-ios -p keyman-linux -p keyman-mac -p keyman-web -p keyman-windows $SENTRY_RELEASE_VERSION
|
|
|
|
echo "Setting commits for release tag $SENTRY_RELEASE_VERSION"
|
|
sentry-cli releases set-commits --auto $SENTRY_RELEASE_VERSION
|
|
|
|
echo "Finalizing release tag $SENTRY_RELEASE_VERSION"
|
|
sentry-cli releases finalize "$SENTRY_RELEASE_VERSION"
|
|
fi
|
|
fi
|
|
}
|
|
|