mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-28 03:07:43 +00:00
* `builder_has_action` renamed to `builder_start_action` * `builder_report` renamed to `builder_finish_action` * `builder_has_action` created to be a silent test for the action * Added reasonably comprehensive documentation.
62 lines
2 KiB
Bash
Executable file
62 lines
2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Builds the include script for the current Keyman version.
|
|
#
|
|
|
|
# Exit on command failure and when using unset variables:
|
|
set -eu
|
|
|
|
## 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
|
|
|
|
. "$KEYMAN_ROOT/resources/shellHelperFunctions.sh"
|
|
|
|
# This script runs from its own folder
|
|
cd "$(dirname "$THIS_SCRIPT")"
|
|
|
|
################################ Main script ################################
|
|
|
|
builder_describe "Build the include script for current Keyman version" configure clean build
|
|
builder_parse "$@"
|
|
|
|
# TODO: build if out-of-date if test is specified
|
|
# TODO: configure if npm has not been run, and build is specified
|
|
|
|
if builder_start_action configure; then
|
|
verify_npm_setup
|
|
builder_finish_action success configure
|
|
fi
|
|
|
|
if builder_start_action clean; then
|
|
npm run clean
|
|
rm -f ./version.inc.ts
|
|
builder_finish_action success clean
|
|
fi
|
|
|
|
if builder_start_action build; then
|
|
# Generate index.ts
|
|
echo "
|
|
// Generated by common/web/keyman-version/build.sh
|
|
namespace com.keyman {
|
|
export class KEYMAN_VERSION {
|
|
static readonly VERSION = \"$VERSION\";
|
|
static readonly VERSION_RELEASE =\"$VERSION_RELEASE\";
|
|
static readonly VERSION_MAJOR = \"$VERSION_MAJOR\";
|
|
static readonly VERSION_MINOR = \"$VERSION_MINOR\";
|
|
static readonly VERSION_PATCH = \"$VERSION_PATCH\";
|
|
static readonly TIER =\"$TIER\";
|
|
static readonly VERSION_TAG = \"$VERSION_TAG\";
|
|
static readonly VERSION_WITH_TAG = \"$VERSION_WITH_TAG\";
|
|
static readonly VERSION_ENVIRONMENT = \"$VERSION_ENVIRONMENT\";
|
|
static readonly SENTRY_RELEASE = \"release-$VERSION_WITH_TAG\";
|
|
}
|
|
}
|
|
" > ./version.inc.ts
|
|
|
|
# Build
|
|
npm run build -- $builder_verbose
|
|
builder_finish_action success build
|
|
fi
|