system-config/modules/jenkins_jobs/templates/builder_pep8.xml.erb
Andrew Hutchings e53a05ac39 Add Jenkins job filler to puppet
Adds default Openstack jobs for a given project name into Jenkins

To envoke add a section as follows to your site manifest:

  class { "jenkins_jobs":
    site => "openstack",
    projects => ["project1", "project2"]
  }

Now using xml building blocks!

Change-Id: If4cacba91d3dc22207e53413543e5bcfcfb0b541
2012-03-20 15:40:01 +00:00

10 lines
195 B
Plaintext

<hudson.tasks.Shell>
<command>#!/bin/sh
if [ -f .cache.bundle ] ; then
tox -v -ejenkinspep8 | tee pep8.txt
else
tox -v -epep8 | tee pep8.txt
fi</command>
</hudson.tasks.Shell>