Metadata-Version: 1.1
Name: jenkins-epo
Version: 1.152
Summary: Leverage Jenkins features for GitHub repositories.
Home-page: http://jenkins-epo.rtfd.io
Author: Étienne BERSAC <etienne.bersac@people-doc.com>, James Pic <james.pic@people-doc.com>
Author-email: rd@novapost.fr
License: GPL v3 or later
Description: Time for kickass CI !
        
        | |hulk|
        
        #############
         Jenkins EPO
        #############
        
        | |RTFD| |CI| |CodeCov| |PyPI|
        
        Implements extended CI features on top of Jenkins and GitHub for in-house CI.
        
        
        Features
        ========
        
        - Define jobs from repository in `jenkins.yml
          <https://github.com/novafloss/jenkins-yml>`_.
        - Jobs pipeline façon GitLab CI.
        - Query GitHub API to poll open PR instead of polling git repository.
        - Read instructions from PR comments.
        - Cancel running jobs when pushing new commits.
        - Report issue on broken protected branches.
        - Auto-merge PR.
        - Works behind firewall.
        - Extensible through entry-point.
        
        
        Quickstart
        ==========
        
        On your poller host:
        
        ::
        
           pip3 install jenkins-epo
           # Setup env vars
           export JENKINS_URL=http://myjenkins.lan JOBS_CREDENTIALS=clone-creds
           export GITHUB_TOKEN=YOUR_SECRET_TOKEN REPOSITORIES=owner/repo
           # Check repository is manageable
           jenkins-epo list-heads
           # Trigger a dry run
           DRY_RUN=1 jenkins-epo process https://github.com/owner/repo/tree/master
           # Run it for real
           jenkins-epo bot
        
        Now write a ``jenkins.yml`` file and open a PR::
        
           myjob: |
               tox -r
        
        
        Many instructions are available. Just ask the bot by commenting ``jenkins:
        help`` in an open PR!
        
        
        .. |CI| image:: https://circleci.com/gh/novafloss/jenkins-epo.svg?style=shield
           :target: https://circleci.com/gh/novafloss/jenkins-epo
           :alt: CI Status
        
        .. |CodeCov| image:: https://codecov.io/gh/novafloss/jenkins-epo/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/novafloss/jenkins-epo
           :alt: Code coverage
        
        .. |hulk| image:: https://github.com/novafloss/jenkins-epo/raw/master/hulk.gif
           :alt: Hulk
        
        .. |PyPI| image:: https://img.shields.io/pypi/v/jenkins-epo.svg
           :target: https://pypi.python.org/pypi/jenkins-epo
           :alt: Version on PyPI
        
        .. |RTFD| image:: https://readthedocs.org/projects/jenkins-epo/badge/?version=latest
           :target: http://jenkins-epo.rtfd.io/
           :alt: Documentation
        
Keywords: jenkins,github,yml
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
