Switch zuul to jenkins python jobs template.

Switch zuul jenkins jobs config to use the python jobs template. The
gate-zuul-pyflakes job has been kept though. Add zuul-docs job as well.
Configure the zuul layout to gate zuul on python26 and python27 jobs.
Also configured to run the zuul-coverage job and zuul-docs job post
merge.

Change-Id: Ib3500c361bca0e2c35fa9552b0aa98468d2f040f
This commit is contained in:
Clark Boylan 2012-08-01 09:38:14 -07:00
parent 2be800ec2d
commit 9a2931100f
2 changed files with 45 additions and 28 deletions

View File

@ -180,7 +180,6 @@ class Publishers(object):
transfers = XML.SubElement(ftp, 'transfers')
ftp_transfers = XML.SubElement(transfers, 'jenkins.plugins.publish__over__ftp.BapFtpTransfer')
# TODO: the next four fields are where the magic happens. Fill them in.
XML.SubElement(ftp_transfers, 'remoteDirectory').text = data['remote_dir']
XML.SubElement(ftp_transfers, 'sourceFiles').text = data['source_files']
XML.SubElement(ftp_transfers, 'excludes').text = data['excludes']
@ -310,3 +309,21 @@ class Publishers(object):
XML.SubElement(entry, 'filePath').text = data['target_path']
XML.SubElement(entry, 'sourceFile').text = data['warfile']
XML.SubElement(entry, 'keepHierarchy').text = 'false'
# Jenkins Job module for generic scp publishing
# To use you add the following into your YAML:
# publish:
# site: 'openstack-ci.openstack.org'
# source: 'doc/build/html/**/*'
# target_path: 'ci/zuul'
# keep_heirarchy: 'true'
def _publisher_scp(self, xml_parent, data):
site = data['site']
scp = XML.SubElement(xml_parent, 'be.certipost.hudson.plugin.SCPRepositoryPublisher')
XML.SubElement(scp, 'siteName').text = site
entries = XML.SubElement(scp, 'entries')
entry = XML.SubElement(entries, 'be.certipost.hudson.plugin.Entry')
XML.SubElement(entry, 'filePath').text = data['target_path']
XML.SubElement(entry, 'sourceFile').text = data['source']
XML.SubElement(entry, 'keepHierarchy').text = data['keep_heirarchy']

View File

@ -1,3 +1,13 @@
project:
template: 'python_jobs'
values:
name: 'zuul'
disabled: 'false'
github_org: 'openstack-ci'
review_site: 'review.openstack.org'
node: 'precise'
---
# pyflakes-gate
main:
@ -21,48 +31,38 @@ assignednode:
node: 'precise'
---
# pep8-gate
# zuul-docs
main:
name: 'gate-zuul-pep8'
name: 'zuul-docs'
review_site: 'review.openstack.org'
github_org: 'openstack-ci'
project: 'zuul'
authenticatedBuild: 'false'
disabled: 'false'
concurrent: 'true'
triggers:
- zuul
- zuul_post
logrotate:
daysToKeep: 28
numToKeep: -1
artifactDaysToKeep: -1
artifactNumToKeep: -1
builders:
- gerrit_git_prep
- pep8
- docs
post_build_actions:
- pep8
- scp:
site: '173.203.107.207'
source: 'doc/build/html/**/*'
target_path: 'ci/zuul'
keep_heirarchy: 'true'
scm:
scm: 'false'
assignednode:
node: 'precise'
---
# merge-gate
main:
name: 'gate-zuul-merge'
review_site: 'review.openstack.org'
github_org: 'openstack-ci'
project: 'zuul'
concurrent: 'true'
triggers:
- zuul
builders:
- gerrit_git_prep
scm:
scm: 'false'
assignednode:
node: 'precise'