mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
Some checks failed
Keyman Build Summary / Summarize build status checks (push) Has been cancelled
- make `verify_source.sh` a full builder script - make options for `launchpad.sh` less confusing - reference `--help` in `packaging.md` - run new script as part of Ubuntu packaging workflow Co-authored-by: Marc Durdin <marc@durdin.net>
104 lines
3.4 KiB
Bash
Executable file
104 lines
3.4 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# This script serves two purposes:
|
|
# - Verify Keyman builds from source tarball
|
|
# - Verify source package (that will be uploaded to Launchpad) does not
|
|
# produce lintian errors
|
|
|
|
## START STANDARD BUILD SCRIPT INCLUDE
|
|
# adjust relative paths as necessary
|
|
THIS_SCRIPT="$(readlink -f "${BASH_SOURCE[0]}")"
|
|
# shellcheck source=resources/build/builder-full.inc.sh
|
|
. "${THIS_SCRIPT%/*}/../../resources/build/builder-full.inc.sh"
|
|
## END STANDARD BUILD SCRIPT INCLUDE
|
|
|
|
builder_describe \
|
|
"Verify source tarball and source package" \
|
|
build \
|
|
"--no-create-tarball Skip creating a new tarball. Instead use existing one." \
|
|
"--source-only Only check that it's possible to build Keyman from the source tarball." \
|
|
"--launchpad-only Only check that lintian doesn't produce errors when run on the source package." \
|
|
"--target-dir=TARGET_DIR Directory where to put generate files. Default: /tmp/keyman-<version>."
|
|
|
|
builder_parse "$@"
|
|
|
|
if ! builder_has_option --target-dir; then
|
|
TARGET_DIR="/tmp/keyman-${KEYMAN_VERSION}"
|
|
fi
|
|
|
|
create_source_tarball() {
|
|
local target_dir="$1"
|
|
|
|
builder_echo "Create source tarball"
|
|
rm -rf dist
|
|
./scripts/reconf.sh
|
|
PKG_CONFIG_PATH="${KEYMAN_ROOT}/core/build/arch/release/meson-private" ./scripts/dist.sh
|
|
|
|
mkdir -p "${target_dir}"
|
|
cp dist/keyman-*.tar.xz "${target_dir}"
|
|
}
|
|
|
|
extract_source_tarball() {
|
|
local target_dir="$1"
|
|
|
|
builder_echo "Extract source tarball"
|
|
cd "${target_dir}"
|
|
tar -xvf keyman-*.tar.xz
|
|
}
|
|
|
|
verify_can_build() {
|
|
local target_dir="$1"
|
|
builder_echo heading "Verifying build of tarball"
|
|
cd "${target_dir}"
|
|
# running `npm i` should happen automatically. See #15905
|
|
npm i
|
|
./build.sh configure,build
|
|
}
|
|
|
|
create_source_package() {
|
|
local target_dir="$1"
|
|
|
|
# Production code uses uscan to download the latest tarball from
|
|
# downloads.keyman.com/linux and then basically copies the debian
|
|
# directory from the source repo. Since we want to work on code that
|
|
# is not released yet we do similar steps here and then skip the
|
|
# download in the launchpad script.
|
|
cd "${target_dir}"
|
|
mkdir -p launchpad
|
|
cd launchpad
|
|
cp -r "../keyman" "keyman-${KEYMAN_VERSION}"
|
|
cp -r "${KEYMAN_ROOT}/linux/debian" "keyman-${KEYMAN_VERSION}"
|
|
cp "${target_dir}/keyman-${KEYMAN_VERSION}.tar.xz" "keyman_${KEYMAN_VERSION}.orig.tar.xz"
|
|
"keyman-${KEYMAN_VERSION}/linux/scripts/launchpad.sh" --no-download \
|
|
--dist "$(lsb_release -c -s)" --outputdir "${target_dir}/launchpad" --no-lintian
|
|
}
|
|
|
|
verify_lintian() {
|
|
builder_echo heading "Running lintian"
|
|
lintian "keyman_${KEYMAN_VERSION}"*source.changes
|
|
}
|
|
|
|
cd "${KEYMAN_ROOT}/linux"
|
|
|
|
if ! builder_has_option --no-create-tarball; then
|
|
builder_echo start tarball "Building source tarball"
|
|
create_source_tarball "${TARGET_DIR}"
|
|
builder_echo end tarball success "Finished building source tarball"
|
|
fi
|
|
|
|
if ! builder_has_option --launchpad-only; then
|
|
builder_echo start verifySource "Verifying source tarball"
|
|
extract_source_tarball "${TARGET_DIR}"
|
|
verify_can_build "${TARGET_DIR}/keyman"
|
|
rm -rf "${TARGET_DIR}/keyman"
|
|
builder_echo end verifySource success "Finished verifying source tarball"
|
|
fi
|
|
|
|
if ! builder_has_option --source-only; then
|
|
builder_echo start lintian "Verifying Launchpad source package"
|
|
extract_source_tarball "${TARGET_DIR}"
|
|
create_source_package "${TARGET_DIR}"
|
|
verify_lintian
|
|
rm -rf "${TARGET_DIR}/keyman"
|
|
rm -rf "${TARGET_DIR}/launchpad"
|
|
builder_echo end lintian success "Finished verifying Launchpad source package"
|
|
fi
|