2021-02-10 06:27:49 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2023-08-24 13:42:45 +00:00
|
|
|
export CCACHE_BASEDIR="$(pwd)"
|
|
|
|
export CCACHE_DIR="$CCACHE_BASEDIR/ccache"
|
|
|
|
export CCACHE_MAXSIZE="500M"
|
|
|
|
export PATH="$CCACHE_WRAPPERSDIR:$PATH"
|
|
|
|
|
|
|
|
# Enable these conditionally since their best use case is during
|
|
|
|
# non-interactive workloads without having a Shell
|
|
|
|
if ! [ -t 1 ]; then
|
|
|
|
export VIR_TEST_VERBOSE="1"
|
|
|
|
export VIR_TEST_DEBUG="1"
|
|
|
|
fi
|
2019-08-15 12:28:17 +00:00
|
|
|
|
2023-08-25 14:12:32 +00:00
|
|
|
GIT_ROOT="$(git rev-parse --show-toplevel)"
|
2023-08-24 13:45:44 +00:00
|
|
|
run_cmd() {
|
|
|
|
printf "\e[32m[RUN COMMAND]: '%s'\e[0m\n" "$*"
|
|
|
|
"$@"
|
|
|
|
}
|
2023-08-24 13:44:52 +00:00
|
|
|
|
|
|
|
run_meson_setup() {
|
|
|
|
run_cmd meson setup build --error -Dsystem=true $MESON_OPTS $MESON_ARGS || \
|
|
|
|
(cat "${GIT_ROOT}/build/meson-logs/meson-log.txt" && exit 1)
|
|
|
|
}
|
2023-08-24 13:46:53 +00:00
|
|
|
|
|
|
|
run_build() {
|
|
|
|
test -f $GIT_ROOT/build/build.ninja || run_meson_setup
|
|
|
|
run_cmd meson compile -C build $BUILD_ARGS
|
|
|
|
}
|
2023-08-24 13:47:48 +00:00
|
|
|
|
|
|
|
run_dist() {
|
|
|
|
test -f $GIT_ROOT/build/build.ninja || run_meson_setup
|
|
|
|
|
|
|
|
# dist is unhappy in local container environment complaining about
|
|
|
|
# uncommitted changes in the repo which is often not the case - refreshing
|
|
|
|
# git's index solves the problem
|
|
|
|
git update-index --refresh
|
|
|
|
run_cmd meson dist -C build --no-tests
|
|
|
|
}
|
2023-08-24 13:48:46 +00:00
|
|
|
|
|
|
|
run_test() {
|
2023-09-13 10:51:01 +00:00
|
|
|
TEST_ARGS="${TEST_ARGS:=--no-suite syntax-check --print-errorlogs}"
|
|
|
|
|
2023-08-24 13:48:46 +00:00
|
|
|
test -f $GIT_ROOT/build/build.ninja || run_meson_setup
|
2023-09-13 10:51:01 +00:00
|
|
|
|
2023-08-24 13:48:46 +00:00
|
|
|
run_cmd meson test -C build $TEST_ARGS
|
|
|
|
}
|
2023-08-24 13:49:19 +00:00
|
|
|
|
|
|
|
run_codestyle() {
|
|
|
|
BUILD_ARGS="libvirt-pot-dep"
|
|
|
|
TEST_ARGS="--suite syntax-check --no-rebuild --print-errorlogs"
|
|
|
|
|
|
|
|
run_build
|
|
|
|
run_test
|
|
|
|
}
|
2023-08-24 13:48:46 +00:00
|
|
|
|
|
|
|
run_potfile() {
|
|
|
|
# since meson would run jobs for each of the following target in parallel,
|
|
|
|
# we'd have dependency issues such that one target might depend on a
|
|
|
|
# generated file which hasn't been generated yet by the other target, hence
|
|
|
|
# we limit potfile job to a single build job (luckily potfile build has
|
|
|
|
# negligible performance impact)
|
|
|
|
BUILD_ARGS="-j1 libvirt-pot-dep libvirt-pot"
|
|
|
|
|
|
|
|
run_build
|
|
|
|
}
|
2023-08-24 13:49:19 +00:00
|
|
|
|
|
|
|
run_rpmbuild() {
|
|
|
|
run_dist
|
|
|
|
run_cmd rpmbuild \
|
|
|
|
--clean \
|
|
|
|
--nodeps \
|
|
|
|
--define "_without_mingw 1" \
|
|
|
|
-ta build/meson-dist/libvirt-*.tar.xz
|
|
|
|
}
|
2023-08-24 13:49:19 +00:00
|
|
|
|
|
|
|
run_website_build() {
|
|
|
|
export DESTDIR="${GIT_ROOT}/install"
|
|
|
|
BUILD_ARGS="install-web"
|
|
|
|
|
|
|
|
run_build
|
|
|
|
}
|