mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
84 lines
2.6 KiB
Bash
Executable file
84 lines
2.6 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
## START STANDARD BUILD SCRIPT INCLUDE
|
|
# adjust relative paths as necessary
|
|
THIS_SCRIPT="$(readlink -f "${BASH_SOURCE[0]}")"
|
|
. "${THIS_SCRIPT%/*}/../../resources/build/builder.inc.sh"
|
|
## END STANDARD BUILD SCRIPT INCLUDE
|
|
|
|
################################ Main script ################################
|
|
|
|
builder_describe \
|
|
"Build ibus-keyman." \
|
|
":engine" \
|
|
"clean" \
|
|
"configure" \
|
|
"build" \
|
|
"test" \
|
|
"install install artifacts" \
|
|
"uninstall uninstall artifacts" \
|
|
"@/core:arch" \
|
|
"@../keyman-system-service:service" \
|
|
"--no-integration don't run integration tests" \
|
|
"--report create coverage report" \
|
|
"--coverage capture test coverage"
|
|
|
|
builder_parse "$@"
|
|
|
|
if builder_is_debug_build; then
|
|
MESON_TARGET=debug
|
|
export CPPFLAGS=-DG_MESSAGES_DEBUG
|
|
export CFLAGS="-O0"
|
|
export CXXFLAGS="-O0"
|
|
else
|
|
MESON_TARGET=release
|
|
fi
|
|
MESON_PATH="../build/$(uname -m)/$MESON_TARGET"
|
|
|
|
builder_describe_outputs \
|
|
configure "${MESON_PATH}/build.ninja" \
|
|
build "${MESON_PATH}/src/ibus-engine-keyman"
|
|
|
|
if builder_has_option --coverage; then
|
|
MESON_COVERAGE=-Db_coverage=true
|
|
else
|
|
MESON_COVERAGE=
|
|
fi
|
|
|
|
# Import our standard compiler defines; this is copied from
|
|
# /resources/build/meson/standard.meson.build by build.sh, because meson doesn't
|
|
# allow us to reference a file outside its root. ${THIS_SCRIPT_PATH}/meson.build
|
|
# then includes `resources` as a subdir.
|
|
if builder_has_action configure; then
|
|
mkdir -p "${THIS_SCRIPT_PATH}/resources"
|
|
cp "${KEYMAN_ROOT}/resources/build/meson/standard.meson.build" "${THIS_SCRIPT_PATH}/resources/meson.build"
|
|
fi
|
|
|
|
configure_action() {
|
|
# shellcheck disable=SC2086,SC2154
|
|
meson setup ${MESON_COVERAGE} --werror --buildtype $MESON_TARGET "${builder_extra_params[@]}" "$MESON_PATH"
|
|
}
|
|
|
|
test_action() {
|
|
if builder_has_option --no-integration; then
|
|
# shellcheck disable=SC2086,SC2154
|
|
meson test --print-errorlogs $builder_verbose setup-src-test keymanutil-tests print-kmpdetails-test print-kmp-test bcp47-util-tests teardown-src-test
|
|
else
|
|
# shellcheck disable=SC2086
|
|
meson test --print-errorlogs $builder_verbose
|
|
fi
|
|
if builder_has_option --coverage; then
|
|
# Note: requires lcov > 1.16 to properly work (see https://github.com/mesonbuild/meson/issues/6747)
|
|
ninja coverage-html
|
|
fi
|
|
}
|
|
|
|
builder_run_action clean rm -rf "$THIS_SCRIPT_PATH/../build/"
|
|
builder_run_action configure configure_action
|
|
|
|
[ -d "$MESON_PATH" ] && cd "$MESON_PATH"
|
|
|
|
builder_run_action build ninja
|
|
builder_run_action test test_action
|
|
builder_run_action install ninja install
|
|
builder_run_action uninstall ninja uninstall
|