diff options
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/storperf/storperf.yml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/jjb/storperf/storperf.yml b/jjb/storperf/storperf.yml index 595c663f7..9e29674fa 100644 --- a/jjb/storperf/storperf.yml +++ b/jjb/storperf/storperf.yml @@ -62,8 +62,9 @@ branch-pattern: '**/master' builders: - - shell: - echo "Hello World" + - shell: | + $WORKSPACE/ci/verify.sh + - job-template: name: 'storperf-merge' @@ -112,8 +113,12 @@ branch-pattern: '**/master' builders: - - shell: - echo "Hello World" + - shell: | + $WORKSPACE/ci/merge.sh + + publishers: + - junit: + results: nosetests.xml - job-template: @@ -154,5 +159,6 @@ - timed: 'H H * * *' builders: - - shell: - echo "Hello World" + - shell: | + $WORKSPACE/ci/daily.sh + |