Add periodic bitrot check jobs.

Add jobs that run daily to make sure stable branches still pass
tests.  Added as a template that can be added to any project
and any branch.

Change-Id: I90c2bab2afd8e1ad7077f3473504069b0dad9876
This commit is contained in:
James E. Blair 2012-08-03 09:31:12 -07:00
parent 856ca2b2e8
commit d6eaa493bd
3 changed files with 133 additions and 3 deletions

View File

@ -45,9 +45,11 @@ class SCM(object):
XML.SubElement(huser, 'name').text = 'origin'
XML.SubElement(huser, 'refspec').text = '+refs/heads/*:refs/remotes/origin/*'
XML.SubElement(huser, 'url').text = 'git://github.com/{org}/{project}.git'.format(org=main['github_org'], project=main['project'])
branches = XML.SubElement(scm, 'branches')
bspec = XML.SubElement(branches, 'hudson.plugins.git.BranchSpec')
XML.SubElement(bspec, 'name').text = '**'
xml_branches = XML.SubElement(scm, 'branches')
branches = self.data['scm'].get('branches', ['**'])
for branch in branches:
bspec = XML.SubElement(xml_branches, 'hudson.plugins.git.BranchSpec')
XML.SubElement(bspec, 'name').text = branch
XML.SubElement(scm, 'disableSubmodules').text = 'false'
XML.SubElement(scm, 'recursiveSubmodules').text = 'false'
XML.SubElement(scm, 'doGenerateSubmoduleConfigurations').text = 'false'

View File

@ -8,6 +8,32 @@ values:
review_site: 'review.openstack.org'
node: 'precise'
---
project:
template: 'python_bitrot_jobs'
values:
name: 'nova'
disabled: 'false'
github_org: 'openstack'
review_site: 'review.openstack.org'
node: 'oneiric'
branch_name: 'stable-diablo'
branch_spec: 'stable/diablo'
---
project:
template: 'python_bitrot_jobs'
values:
name: 'nova'
disabled: 'false'
github_org: 'openstack'
review_site: 'review.openstack.org'
node: 'precise'
branch_name: 'stable-essex'
branch_spec: 'stable/essex'
---
project:
template: 'openstack_publish_jobs'

View File

@ -0,0 +1,102 @@
---
# python26-gate
main:
name: 'periodic-@NAME@-python26-@BRANCH_NAME@'
review_site: '@REVIEW_SITE@'
github_org: '@GITHUB_ORG@'
project: '@NAME@'
authenticatedBuild: 'false'
disabled: @DISABLED@
concurrent: 'true'
logrotate:
daysToKeep: 28
numToKeep: -1
artifactDaysToKeep: -1
artifactNumToKeep: -1
triggers:
- timed: '@daily'
builders:
- python26
post_build_actions:
- junit:
results: '**/nosetests.xml'
scm:
scm: 'true'
branches:
- '@BRANCH_SPEC@'
# >= precise does not have python2.6
assignednode:
node: 'oneiric'
---
# python27-gate
main:
name: 'periodic-@NAME@-python27-@BRANCH_NAME@'
review_site: '@REVIEW_SITE@'
github_org: '@GITHUB_ORG@'
project: '@NAME@'
authenticatedBuild: 'false'
disabled: @DISABLED@
concurrent: 'true'
logrotate:
daysToKeep: 28
numToKeep: -1
artifactDaysToKeep: -1
artifactNumToKeep: -1
triggers:
- timed: '@daily'
builders:
- python27
post_build_actions:
- junit:
results: '**/nosetests.xml'
scm:
scm: 'true'
branches:
- '@BRANCH_SPEC@'
assignednode:
node: '@NODE@'
---
# docs-gate
main:
name: 'periodic-@NAME@-docs-@BRANCH_NAME@'
review_site: '@REVIEW_SITE@'
github_org: '@GITHUB_ORG@'
project: '@NAME@'
authenticatedBuild: 'false'
disabled: @DISABLED@
concurrent: 'true'
logrotate:
daysToKeep: 28
numToKeep: -1
artifactDaysToKeep: -1
artifactNumToKeep: -1
triggers:
- timed: '@daily'
builders:
- docs
scm:
scm: 'true'
branches:
- '@BRANCH_SPEC@'
assignednode:
node: '@NODE@'