mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
89 lines
No EOL
2.6 KiB
Bash
Executable file
89 lines
No EOL
2.6 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Compile KeymanWeb's 'keyboard-processor' module, one of the components of Web's 'core' module.
|
|
#
|
|
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"
|
|
. "$KEYMAN_ROOT/resources/shellHelperFunctions.sh"
|
|
## END STANDARD BUILD SCRIPT INCLUDE
|
|
|
|
# This script runs from its own folder
|
|
cd "$(dirname "$THIS_SCRIPT")"
|
|
|
|
################################ Main script ################################
|
|
|
|
builder_check_color "$@"
|
|
|
|
# TODO: for predictive-text, we only need :headless, perhaps we should be splitting modules?
|
|
# TODO: remove :tools once kmlmc is a dependency for test:module
|
|
|
|
builder_describe "Builds the standalone, headless form of Keyman Engine for Web's input-processor module" \
|
|
"@../keyman-version" \
|
|
"@../keyboard-processor" \
|
|
"@../../predictive-text" \
|
|
"clean" \
|
|
"configure" \
|
|
"build" \
|
|
"test" \
|
|
":module A headless, Node-oriented version of the module useful for unit tests" \
|
|
":tools Related tools useful for development and testing of this module" \
|
|
"--ci Sets ${BUILDER_TERM_START}test${BUILDER_TERM_END} action to use CI-based test configurations & reporting"
|
|
|
|
builder_describe_outputs \
|
|
configure:module /node_modules \
|
|
configure:tools /node_modules \
|
|
build:module build/index.js \
|
|
build:tools /developer/src/kmlmc/dist/kmlmc.js # TODO: remove this once kmlmc is a dependency
|
|
|
|
builder_parse "$@"
|
|
|
|
### CONFIGURE ACTIONS
|
|
|
|
if builder_start_action configure; then
|
|
verify_npm_setup
|
|
builder_finish_action success configure
|
|
fi
|
|
|
|
### CLEAN ACTIONS
|
|
|
|
if builder_start_action clean; then
|
|
rm -rf build/
|
|
builder_finish_action success clean
|
|
fi
|
|
|
|
### BUILD ACTIONS
|
|
|
|
if builder_start_action build:tools; then
|
|
# Used by test:module
|
|
# TODO: convert to a dependency once we have updated kmlmc to use builder script
|
|
pushd "$KEYMAN_ROOT/developer/src/kmlmc"
|
|
./build.sh -S
|
|
popd
|
|
|
|
builder_finish_action success build:tools
|
|
fi
|
|
|
|
if builder_start_action build:module; then
|
|
npm run tsc -- -b src/tsconfig.json
|
|
builder_finish_action success build:module
|
|
fi
|
|
|
|
# TEST ACTIONS
|
|
|
|
if builder_start_action test:module; then
|
|
FLAGS=
|
|
if builder_has_option --ci; then
|
|
FLAGS="--reporter mocha-teamcity-reporter"
|
|
fi
|
|
|
|
# Build the leaf-style, bundled version of input-processor for use in testing.
|
|
npm run tsc -- -b src/tsconfig.bundled.json
|
|
|
|
npm run mocha -- --recursive $FLAGS ./tests/cases/
|
|
|
|
builder_finish_action success test:module
|
|
fi |