summaryrefslogtreecommitdiffstats
path: root/jjb/calipso
diff options
context:
space:
mode:
authoryayogev <yaronyogev@gmail.com>2017-08-16 10:01:46 +0300
committeryayogev <yaronyogev@gmail.com>2017-08-21 10:07:44 +0300
commit877a8a6286cf569aae12e64babecd657b2d90b9d (patch)
treef2d49d32ff3e1de02a4ea8913867d7d5a651a296 /jjb/calipso
parent63bfdf7e1ae7cd5f2591e7ecf9a17fcd49f85fb1 (diff)
add Calipso Jenkins job: run unit tests
Change-Id: I6ecb7f85d9cdfc3dadc7e3b6769daf3b6cb144b5 Signed-off-by: yayogev <yaronyogev@gmail.com>
Diffstat (limited to 'jjb/calipso')
-rw-r--r--jjb/calipso/calipso.yml59
1 files changed, 59 insertions, 0 deletions
diff --git a/jjb/calipso/calipso.yml b/jjb/calipso/calipso.yml
new file mode 100644
index 000000000..b8d10eb89
--- /dev/null
+++ b/jjb/calipso/calipso.yml
@@ -0,0 +1,59 @@
+- project:
+ name: calipso
+
+ project: '{name}'
+
+ jobs:
+ - 'calipso-verify-{stream}'
+
+ stream:
+ - master:
+ branch: '{stream}'
+ disabled: false
+
+- job-template:
+ name: 'calipso-verify-{stream}'
+
+ disabled: '{obj:disabled}'
+
+ parameters:
+ - project-parameter:
+ project: '{project}'
+ branch: '{branch}'
+
+ scm:
+ - git-scm-gerrit
+
+ triggers:
+ - gerrit:
+ server-name: 'gerrit.opnfv.org'
+ trigger-on:
+ - patchset-created-event:
+ exclude-drafts: 'false'
+ exclude-trivial-rebase: 'false'
+ exclude-no-code-change: 'false'
+ - draft-published-event
+ - comment-added-contains-event:
+ comment-contains-value: 'recheck'
+ - comment-added-contains-event:
+ comment-contains-value: 'reverify'
+ projects:
+ - project-compare-type: 'ANT'
+ project-pattern: '{project}'
+ branches:
+ - branch-compare-type: 'ANT'
+ branch-pattern: '**/{branch}'
+
+ builders:
+ - verify-unit-tests
+
+- builder:
+ name: verify-unit-tests
+ builders:
+ - shell: |
+ #!/bin/bash
+ set -o errexit
+ set -o nounset
+ set -o pipefail
+ cd $WORKSPACE
+ PYTHONPATH=$PWD/app python3 -m unittest discover -s app/test/fetch