ReleaseEngineering/PuppetAgain/Modules/bors

< ReleaseEngineering‎ | PuppetAgain‎ | Modules
Revision as of 18:37, 30 May 2013 by Bhearsum (talk | contribs) (Created page with "The Bors module installs the Bors continuous integration software set-up to work on a specific github repository. It can be instantiated with a snippet such as: <pre> bors...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The Bors module installs the Bors continuous integration software set-up to work on a specific github repository. It can be instantiated with a snippet such as:

    bors::instance {
        "servo":
            basedir => "/builds/bors/servo",
            owner => "servobld",
            group => "servobld",
            repo_owner => "mozilla",
            repo => "servo",
            reviewers => ["bob","alice"],
            builders => ["linux","mac"],
            buildbot_url => "http://buildbot-master.fqdn.com:8010",
            bors_user => "bors-servo",
            bors_pass => "password",
            status_location => "/builds/buildbot/servo1/master/public_html/bors";
    }                     

"bors_version" can be passed to install a different version of Bors.

"test_ref", "master_ref", "n_builds" can also be passed, which will be put into the Bors configuration file.