project-config/jenkins/jobs/python-bitrot-jobs.yaml
Thierry Carrez 585dca13de Add periodic Kilo jobs
New in Kilo is Ironic and neutron-*aas.

Add periodic tempest jobs even when they run as compat jobs
on each tempest master check for stable-maint visiblity.

Change-Id: Id2fe065cf5019cd4ebf5ad62aedc1395e0c14d6b
2015-07-01 21:42:46 +02:00

90 lines
1.7 KiB
YAML

- job-template:
name: 'periodic-{name}-python26{branch-name}'
wrappers:
- build-timeout:
timeout: 60
- timestamps
builders:
- shell: |
#!/bin/bash -xe
if ! rpm -ql libffi-devel >/dev/null ; then
sudo yum install -y libffi-devel
fi
rpm -ql libffi-devel
- revoke-sudo
- branch-git-prep:
branch: '{branch}'
- python26
- assert-no-extra-files
publishers:
- test-results
- console-log
node: bare-centos6
- job-template:
name: 'periodic-{name}-python27{branch-name}'
wrappers:
- build-timeout:
timeout: 40
- timestamps
builders:
- revoke-sudo
- branch-git-prep:
branch: '{branch}'
- python27
- assert-no-extra-files
publishers:
- test-results
- console-log
node: '{node}'
- job-template:
name: 'periodic-{name}-docs{branch-name}'
wrappers:
- build-timeout:
timeout: 40
- timestamps
builders:
- revoke-sudo
- branch-git-prep:
branch: '{branch}'
- docs
publishers:
- console-log
node: '{node}'
- job-group:
name: python-juno-bitrot-jobs
branch: 'stable/juno'
branch-name: '-juno'
node: 'bare-precise || bare-trusty'
jobs:
- 'periodic-{name}-python26{branch-name}'
- 'periodic-{name}-python27{branch-name}'
- 'periodic-{name}-docs{branch-name}'
- job-group:
name: python-kilo-bitrot-jobs
branch: 'stable/kilo'
branch-name: '-kilo'
node: 'bare-precise || bare-trusty'
jobs:
- 'periodic-{name}-python27{branch-name}'
- 'periodic-{name}-docs{branch-name}'