From: Erik Skultety Date: Fri, 25 Aug 2023 14:12:32 +0000 (+0200) Subject: ci: build.sh: Add GIT_ROOT env helper variable X-Git-Tag: v9.8.0-rc1~136 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e61241d7f43f4e048387c0823fd8a3b3941bc36b;p=thirdparty%2Flibvirt.git ci: build.sh: Add GIT_ROOT env helper variable We'll use this one in many of the job functions future patches will introduce, it's a neat shortcut to avoid using relative paths. Signed-off-by: Erik Skultety Reviewed-by: Daniel P. Berrangé --- diff --git a/ci/build.sh b/ci/build.sh index 5a9298c4b4..0549b01ca0 100644 --- a/ci/build.sh +++ b/ci/build.sh @@ -14,6 +14,8 @@ if ! [ -t 1 ]; then export VIR_TEST_DEBUG="1" fi +GIT_ROOT="$(git rev-parse --show-toplevel)" + # $MESON_OPTS is an env that can optionally be set in the container, # populated at build time from the Dockerfile. A typical use case would # be to pass options to trigger cross-compilation