From: Wei Liu Date: Mon, 8 Apr 2019 10:08:56 +0000 (+0100) Subject: gitlab-ci: log commit range in build test X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=7a01cfaeb0f642a573da1e2707cfe0b43f08bab7;p=people%2Fsstabellini%2Fxen-unstable.git%2F.git gitlab-ci: log commit range in build test It is easier to debug stuff when the target range is clearly visible at the top. Signed-off-by: Wei Liu Acked-by: Andrew Cooper --- diff --git a/automation/gitlab-ci/build-each-commit.sh b/automation/gitlab-ci/build-each-commit.sh index 6b7998448a..275bc71902 100755 --- a/automation/gitlab-ci/build-each-commit.sh +++ b/automation/gitlab-ci/build-each-commit.sh @@ -12,5 +12,7 @@ if [[ $? -ne 0 ]]; then exit 0 fi +echo "Building ${CI_COMMIT_BEFORE_SHA}..${CI_COMMIT_SHA}" + NON_SYMBOLIC_REF=1 ./automation/scripts/build-test.sh ${CI_COMMIT_BEFORE_SHA} ${CI_COMMIT_SHA} \ bash -c "make -j4 distclean && ./automation/scripts/build"