From cfaf0bf146c2c9e7598faf6c9efb044b8b7dba33 Mon Sep 17 00:00:00 2001 From: Ed Warnicke Date: Fri, 3 Jun 2016 19:22:28 -0500 Subject: Turn on debugging * sourcing a debug script if DEBUG is set * echo command before executing (set -x) * reduce duplicate code * give more information about uptime Change-Id: Ic8409ea3a819f2070eac01ac84e2b3a6fe975592 Signed-off-by: Ed Warnicke Signed-off-by: C.J. Collier --- jjb/tldk/include-raw-build.sh | 29 ++++------------------------- 1 file changed, 4 insertions(+), 25 deletions(-) (limited to 'jjb/tldk') diff --git a/jjb/tldk/include-raw-build.sh b/jjb/tldk/include-raw-build.sh index f4ba63b63..7e28cb9da 100644 --- a/jjb/tldk/include-raw-build.sh +++ b/jjb/tldk/include-raw-build.sh @@ -1,32 +1,11 @@ #!/bin/bash + # basic build script example +DEBUG=1 set -e -o pipefail -# do nothing but print the current slave hostname -hostname -export CCACHE_DIR=/tmp/ccache -if [ -d $CCACHE_DIR ];then - echo $CCACHE_DIR exists - du -sk $CCACHE_DIR -else - echo $CCACHE_DIR does not exist. This must be a new slave. -fi - -echo "cat /etc/bootstrap.sha" -if [ -f /etc/bootstrap.sha ];then - cat /etc/bootstrap.sha -else - echo "Cannot find /etc/bootstrap.sha" -fi - -echo "cat /etc/bootstrap-functions.sha" -if [ -f /etc/bootstrap-functions.sha ];then - cat /etc/bootstrap-functions.sha -else - echo "Cannot find /etc/bootstrap-functions.sha" -fi -echo "sha1sum of this script: ${0}" -sha1sum $0 +SCRIPTDIR=$(realpath "$(dirname $0)/../../") +[ "${DEBUG}" -gt "0" ] && source "${SCRIPTDIR}/scripts/debug.sh" make -- cgit 1.2.3-korg