1d21cd635f
This repo was created from filter branching the openstack-infra/ config repo. This process brought a lot of cruft with it in the form of directories that we no longer need. This patch removes that cruft so we begin with a tidier repo. Change-Id: Ibffad1b11c0c5f84eedfb0365369f60c4961a0f3
91 lines
1.8 KiB
YAML
91 lines
1.8 KiB
YAML
- job-template:
|
|
name: 'periodic-{name}-python26{branch-name}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 40
|
|
- 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-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}'
|
|
|
|
|
|
- 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}'
|