Make rtd jobs verbose 09/9109/2
authorLott, Christopher (cl778h) <cl778h@att.com>
Thu, 1 Mar 2018 14:40:28 +0000 (09:40 -0500)
committerLott, Christopher (cl778h) <cl778h@att.com>
Thu, 1 Mar 2018 16:06:14 +0000 (11:06 -0500)
Add set -x flag so these scripts echo steps in Jenkins output.

Change-Id: Ia09f3194407f6c94d8cb1adfbb4d32e9a4592ff6
Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
shell/rtd-trigger-build.sh
shell/rtd-verify.sh

index 6df9d05..21e7269 100644 (file)
 ##############################################################################
 echo "---> rtd-trigger-build.sh"
 
+# Ensure we fail the job if any steps fail.
+# DO NOT set -u
+set -xe -o pipefail
+
 if [ "$GERRIT_BRANCH" == "master" ]; then
     RTD_BUILD_VERSION=latest
 else
index bddc23b..61c1974 100644 (file)
@@ -11,8 +11,8 @@
 echo "---> rtd-verify.sh"
 
 # Ensure we fail the job if any steps fail.
-# DO NOT set -u as virtualenv's activate script has unbound variables
-set -e -o pipefail
+# DO NOT set -u
+set -xe -o pipefail
 
 echo "---> Fetching project"
 if [ "$GERRIT_PROJECT" != "$PROJECT" ]; then