856ca2b2e8
For all python27 jobs, use oneiric slaves if the branch is stable/diablo. Python26 jobs are already on oneiric due to lack of python 2.6 on anything later. Change-Id: Id440e14721ccdd4225c5e5b170510c3c000a36b3
8 lines
248 B
Python
8 lines
248 B
Python
def devstack_params(change, params):
|
|
if change.branch == 'stable/diablo':
|
|
params['NODE_LABEL'] = 'devstack-oneiric'
|
|
|
|
def python27_params(change, params):
|
|
if change.branch == 'stable/diablo':
|
|
params['NODE_LABEL'] = 'oneiric'
|