project-config/jenkins/jobs/python-bitrot-jobs.yaml
pcrews 76d624ef89 Increase py26 timeouts for nova-stable
Seeing repeated timeouts on the current 40 minute limit for jobs
on nova for stable juno.  Increasing to 60.

Change-Id: I8f26714d696928b899b81cb5c2703f00e2185a96
2015-02-19 09:04:14 -08:00

91 lines
1.8 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-icehouse-bitrot-jobs
branch: 'stable/icehouse'
branch-name: '-icehouse'
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-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}'