diff options
author | Kristian Hunt <kristian.hunt@gmail.com> | 2015-08-17 15:09:46 +0200 |
---|---|---|
committer | Kristian Hunt <kristian.hunt@gmail.com> | 2015-08-17 15:15:30 +0200 |
commit | 05644e2e1f088214be22e272d3e0d1e1ed7ed1df (patch) | |
tree | a2e3b4f7405a9d07c326f604130dff891914b626 /jjb/yardstick | |
parent | 41848db4af5591d5581e851c14af0cb8c9a2d391 (diff) |
Fix yardstick verify and merge jobs always result in +1
JIRA: YARDSTICK-118
Change-Id: If6793555afc0e1513a7c55a5a1b7a82fca241692
Signed-off-by: Kristian Hunt <kristian.hunt@gmail.com>
Diffstat (limited to 'jjb/yardstick')
-rw-r--r-- | jjb/yardstick/yardstick.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/jjb/yardstick/yardstick.yml b/jjb/yardstick/yardstick.yml index 87199b531..f672b2b87 100644 --- a/jjb/yardstick/yardstick.yml +++ b/jjb/yardstick/yardstick.yml @@ -133,6 +133,8 @@ builders: - shell: | #!/bin/bash + set -o errexit + set -o pipefail echo "Running unit tests..." cd $WORKSPACE @@ -196,6 +198,8 @@ builders: - shell: | #!/bin/bash + set -o errexit + set -o pipefail echo "Running unit tests..." cd $WORKSPACE |