Skip to main content

bulletproof jenkins client

Project description

Python Jenkins client

jenkinsc is a client library for Jenkins API that is made to handle all the possible connectivity and Jenkins API issues

Installation

pip install jenkinsc

How to use

Here an example of usage:

jenkins = Jenkins('environ['JENKINS_URL']', username=environ['JENKINS_USR'], password=environ['JENKINS_PWD'])
jenkins['JOBNAME'].build(build_params={'SRC': 'myscr/folder', 'VERSION': '111'})  # Non blocking jenkins job call
queue_item = jenkins['JOBNAME2'].build(build_params={'REDEPLOY': 'true', 'VERSION': '111'}, block=True)  # will wait till the job is finished 

if not queue_item.get_build().successful():
    raise Exception('JOB2 failed')

How to deploy

jenkinsc is deployed automatically on adding new tag. To make a new release just add a tag on master after upgrading package version in setup.py.

How to add a tag

Example:

git tag -a v0.0.37 -m "Version 0.0.37"
git push --tag

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jenkinsc-0.0.44.tar.gz (4.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page