Run sqa-migrate py26 jobs on centos6 nodes.
The sqlalchemy migrate special env job for python 26 name does not match the centos6 assiginment in the zuul openstack functions for node type. This causes the jobs to end up as not registered with gearman. Update the regex in the zuul functions to match gate-sqlalchemy-migrate-26fooblah. This will make the jobs register with gearman so that zuul can run them. Fixes-bug: 1347068 Change-Id: I5944889d53656395c98bab9a97cb4e76c793c9fd
This commit is contained in:
parent
43153f2f2e
commit
049ec0f67c
@ -87,7 +87,7 @@ def set_node_options(item, job, params, default):
|
||||
params['OFFLINE_NODE_WHEN_COMPLETE'] = '1'
|
||||
proposal_re = r'^.*(merge-release-tags|(propose|upstream)-(requirements|translation)-updates?)$' # noqa
|
||||
pypi_re = r'^.*-(jenkinsci|mavencentral|pypi-(both|wheel))-upload$'
|
||||
python26_re = r'^.*-py(thon)?26.*$'
|
||||
python26_re = r'^.*-(py(thon)?)?26.*$'
|
||||
centos6_re = r'^.*-centos6.*$'
|
||||
f20_re = r'^.*-f20.*$'
|
||||
python33_re = r'^.*-py(py|(thon)?33).*$'
|
||||
|
Loading…
x
Reference in New Issue
Block a user