From a53454ba8ddf6c8063af65e3e3f81775757193b6 Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Fri, 21 Feb 2014 11:11:47 -0700 Subject: [PATCH] jenkins: fail fast during job execution Jenkins will dynamically write the commands in its database into a script and run it with "-x" and "-e" in order to display each step and fail after the first step fails. Now that our commands are stored in Git, ensure that we're doing the same thing. Signed-off-by: Ken Dreyer --- jenkins/jenkins-pull-requests-build | 1 + 1 file changed, 1 insertion(+) diff --git a/jenkins/jenkins-pull-requests-build b/jenkins/jenkins-pull-requests-build index 4513b6065893b..36203d20f8d6d 100755 --- a/jenkins/jenkins-pull-requests-build +++ b/jenkins/jenkins-pull-requests-build @@ -4,6 +4,7 @@ # http://jenkins.ceph.com/job/teuthology-pull-requests/ set -x +set -e virtualenv --version virtualenv --system-site-packages --distribute venv -- 2.39.5