Clark Boylan b1774fded0 Prep JJB jobs for running on bare-trusty
We need to make sure that jenkins will run jobs on bare-trusty before we
can migrate and projects to bare-trusty. So do the initial JJB prep now,
then we can do a project at a time.

Change-Id: I6e80567730bff8d387d8a5b87d7368ea3be6d3ab
2014-06-24 16:37:40 -07:00

83 lines
1.5 KiB
YAML

- job-template:
name: 'periodic-{name}-python26{branch-name}'
wrappers:
- timeout:
timeout: 40
fail: true
- timestamps
builders:
- revoke-sudo
- branch-git-prep:
branch: '{branch}'
- python26:
github-org: '{github-org}'
project: '{name}'
- assert-no-extra-files
publishers:
- test-results
- console-log
node: bare-centos6
- job-template:
name: 'periodic-{name}-python27{branch-name}'
wrappers:
- timeout:
timeout: 40
fail: true
- timestamps
builders:
- revoke-sudo
- branch-git-prep:
branch: '{branch}'
- python27:
github-org: '{github-org}'
project: '{name}'
- assert-no-extra-files
publishers:
- test-results
- console-log
node: '{node}'
- job-template:
name: 'periodic-{name}-docs{branch-name}'
wrappers:
- timeout:
timeout: 40
fail: true
- timestamps
builders:
- revoke-sudo
- branch-git-prep:
branch: '{branch}'
- docs:
github-org: '{github-org}'
project: '{name}'
publishers:
- console-log
node: '{node}'
- job-group:
name: python-havana-bitrot-jobs
branch: 'stable/havana'
branch-name: '-havana'
node: 'bare-precise || bare-trusty'
jobs:
- 'periodic-{name}-python26{branch-name}'
- 'periodic-{name}-python27{branch-name}'
- 'periodic-{name}-docs{branch-name}'