b5c1596894
All jobs which previously used centos6 nodes now use bare-centos6 nodes instead. Match the corresponding job names in Zuul's layout to apply the single-use parameter function to the nodes running them. Change-Id: I64eae79f1ddbd83b1d404383aa47fc812fbe94fc
103 lines
2.0 KiB
YAML
103 lines
2.0 KiB
YAML
- job-template:
|
|
name: 'periodic-{name}-python26{branch-name}'
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 40
|
|
fail: true
|
|
- timestamps
|
|
|
|
builders:
|
|
- python26:
|
|
github-org: '{github-org}'
|
|
project: '{name}'
|
|
- assert-no-extra-files
|
|
|
|
publishers:
|
|
- test-results
|
|
- console-log
|
|
|
|
scm:
|
|
- git:
|
|
url: 'git://git.openstack.org/{github-org}/{name}'
|
|
branches:
|
|
- 'origin/{branch}'
|
|
|
|
node: bare-centos6
|
|
|
|
|
|
- job-template:
|
|
name: 'periodic-{name}-python27{branch-name}'
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 40
|
|
fail: true
|
|
- timestamps
|
|
|
|
builders:
|
|
- python27:
|
|
github-org: '{github-org}'
|
|
project: '{name}'
|
|
- assert-no-extra-files
|
|
|
|
publishers:
|
|
- test-results
|
|
- console-log
|
|
|
|
scm:
|
|
- git:
|
|
url: 'git://git.openstack.org/{github-org}/{name}'
|
|
branches:
|
|
- 'origin/{branch}'
|
|
|
|
node: '{node}'
|
|
|
|
|
|
- job-template:
|
|
name: 'periodic-{name}-docs{branch-name}'
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 40
|
|
fail: true
|
|
- timestamps
|
|
|
|
builders:
|
|
- docs:
|
|
github-org: '{github-org}'
|
|
project: '{name}'
|
|
|
|
publishers:
|
|
- console-log
|
|
|
|
scm:
|
|
- git:
|
|
url: 'git://git.openstack.org/{github-org}/{name}'
|
|
branches:
|
|
- 'origin/{branch}'
|
|
|
|
node: '{node}'
|
|
|
|
|
|
- job-group:
|
|
name: python-grizzly-bitrot-jobs
|
|
branch: 'stable/grizzly'
|
|
branch-name: '-grizzly'
|
|
node: precise
|
|
jobs:
|
|
- 'periodic-{name}-python26{branch-name}'
|
|
- 'periodic-{name}-python27{branch-name}'
|
|
- 'periodic-{name}-docs{branch-name}'
|
|
|
|
|
|
- job-group:
|
|
name: python-havana-bitrot-jobs
|
|
branch: 'stable/havana'
|
|
branch-name: '-havana'
|
|
node: precise
|
|
jobs:
|
|
- 'periodic-{name}-python26{branch-name}'
|
|
- 'periodic-{name}-python27{branch-name}'
|
|
- 'periodic-{name}-docs{branch-name}'
|