Capture all dsvm jobs with the default jobs regex

This should make elastic recheck to capture queries in projects like
neutron where the previous regex was not working for quite some time.

(In neutron gate, full job is called
gate-tempest-dsvm-neutron-full-ubuntu-xenial; there are some jobs that
don't even have 'tempest' in their names that should still participate
in the elastic recheck, like grenade jobs, or rally; all of them have
'dsvm' part though).

Speaking of the regex, probably it should have also be applied to
separate job names before classifying them. But I'll leave it for a
follow-up.

Change-Id: If98951d13ba82833444ef4ffbb7c6be179126f2b
This commit is contained in:
Ihar Hrachyshka 2016-11-09 06:19:12 +00:00
parent 39c2001367
commit 69807fc6eb
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ channel_config=/home/mtreinish/elasticRecheck/recheckwatchbot.yaml
[recheckwatch]
#Any project that has a job that matches this regex will have all their
#jobs included in the recheck algorithm
jobs_regex=(tempest-dsvm-full|gate-tempest-dsvm-virtual-ironic)
jobs_regex=dsvm
ci_username=jenkins
[gerrit]

View File

@ -22,7 +22,7 @@ ES_URL = 'http://logstash.openstack.org:80/elasticsearch'
LS_URL = 'http://logstash.openstack.org'
DB_URI = 'mysql+pymysql://query:query@logstash.openstack.org/subunit2sql'
JOBS_RE = '(tempest-dsvm-full|gate-tempest-dsvm-virtual-ironic)'
JOBS_RE = 'dsvm'
CI_USERNAME = 'jenkins'
GERRIT_QUERY_FILE = 'queries'