diff options
author | Ryota MIBU <r-mibu@cq.jp.nec.com> | 2016-01-08 02:00:42 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-01-08 02:00:42 +0000 |
commit | ba3da3399fbd23b688970c1e661a0c6775b5f9f4 (patch) | |
tree | d0af6304cad1958cd511227b7310f6a0d1853f03 | |
parent | 3684e872b25194e5289810d4ad83231c99d063df (diff) | |
parent | fcc82d32bccc4656713c1c8f125d2f97f1f0989d (diff) |
Merge "doctor: make test script run in doctor-verify job"
-rw-r--r-- | jjb/doctor/doctor.yml | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/jjb/doctor/doctor.yml b/jjb/doctor/doctor.yml index 4001ebf4e..167b696a3 100644 --- a/jjb/doctor/doctor.yml +++ b/jjb/doctor/doctor.yml @@ -1,7 +1,3 @@ -################################################### -# All the jobs except verify have been removed! -# They will only be enabled on request by projects! -################################################### - project: name: doctor @@ -52,10 +48,9 @@ branches: - branch-compare-type: 'ANT' branch-pattern: '**/{branch}' - forbidden-file-paths: + file-paths: - compare-type: ANT - pattern: 'docs/**|.gitignore' + pattern: 'tests/**' builders: - - shell: | - echo "Nothing to verify!" + - shell: "[ -e tests/run.sh ] && ./tests/run.sh" |