spiegel-keyman/resources/teamcity/android/keyman-android-test.sh
Marc Durdin 2b0db1eb51
Merge pull request #14490 from keymanapp/maint/android/14284-publish-sentry-symbols-on-release-buildlevel
maint(android): publish symbols to Sentry on release buildLevel 🦌
2025-08-20 20:20:25 +07:00

48 lines
1.5 KiB
Bash
Executable file

#!/usr/bin/env bash
# Keyman is copyright (C) SIL Global. MIT License.
#
# TC build script for Keyman Android/Test
# shellcheck disable=SC2164
# shellcheck disable=SC1091
## START STANDARD BUILD SCRIPT INCLUDE
# adjust relative paths as necessary
THIS_SCRIPT="$(readlink -f "${BASH_SOURCE[0]}")"
. "${THIS_SCRIPT%/*}/../../../resources/build/builder-full.inc.sh"
## END STANDARD BUILD SCRIPT INCLUDE
# shellcheck disable=SC2154
. "${KEYMAN_ROOT}/resources/build/utils.inc.sh"
. "${KEYMAN_ROOT}/resources/teamcity/android/android-actions.inc.sh"
################################ Main script ################################
builder_describe \
"Build and run tests for Keyman for Android" \
"--fv additionally build and Test FV Android" \
"all run all actions" \
"clean clean artifact directories" \
"build configure, build and test Keyman for Android" \
"publish publish symbols to Sentry (for release buildLevel)"
builder_parse "$@"
cd "${KEYMAN_ROOT}/android"
if builder_has_option --fv; then
TARGETS="engine,app,fv"
else
# shellcheck disable=SC2034
TARGETS="engine,app"
fi
if builder_has_action all; then
android_clean_action
android_build_action "${TARGETS}" --debug
android_publish_symbols "${TARGETS}" --debug
else
builder_run_action clean android_clean_action
builder_run_action build android_build_action "${TARGETS}" --debug
builder_run_action publish android_publish_symbols "${TARGETS}" --debug
fi