Tools to make Jenkins jobs from templates
Go to file
Tollef Fog Heen 8860e647a0 Add support for giving lists to job templates
This change allows constructs like:

- job-template:
    name: "foo-build-{slave}"

- project:
    slave:
      - debian-squeeze-powerpc
      - debian-squeeze-amd64

and will then instantiate the job template for each value in the
list.

Change-Id: I057a30ef6d91048efacc4a6da2142cb8f924dd06
Reviewed-on: https://review.openstack.org/14738
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Approved: James E. Blair <corvus@inaugust.com>
Reviewed-by: James E. Blair <corvus@inaugust.com>
Tested-by: Jenkins
2012-10-30 13:37:19 +00:00
doc Add support for giving lists to job templates 2012-10-30 13:37:19 +00:00
jenkins_jobs Add support for giving lists to job templates 2012-10-30 13:37:19 +00:00
tools Add documentation. 2012-09-17 20:25:38 +00:00
.gitignore Add documentation. 2012-09-17 20:25:38 +00:00
.gitreview Add .gitreview. 2012-08-06 20:25:20 +00:00
jenkins-jobs fallback to ./jenkins_job.ini conf 2012-10-12 16:05:44 +00:00
README.md Correct pip package for Jenkins in README.md 2012-10-04 22:38:34 +00:00
setup.cfg Add documentation. 2012-09-17 20:25:38 +00:00
setup.py Adding ability to checkout from subversion and use the list tags parameter with the parameterized build plugin 2012-10-30 13:35:50 +00:00
tox.ini Add documentation. 2012-09-17 20:25:38 +00:00

Jenkins Job Builder

Jenkins Job Builder takes simple descriptions of Jenkins jobs in YAML format, and uses them to configure Jenkins. You can keep your job descriptions in human readable text format in a version control system to make changes and auditing easier. It also has a flexible template system, so creating many similarly configured jobs is easy.

To install: sudo python setup.py install

Online documentation:

developers

Bug report: https://bugs.launchpad.net/openstack-ci/

Cloning: https://review.openstack.org/p/openstack-ci/jenkins-job-builder.git

Patches are submitted via Gerrit at https://review.openstack.org/

More details on how you can contribute is available on our wiki at: http://wiki.openstack.org/HowToContribute

installing wihout setup.py

For YAML support, you will need libyaml installed.

# Mac OS X:
brew install libyaml

Then install the required python packages using pip:

sudo pip install PyYAML python-jenkins