buildbot


Namebuildbot JSON
Version 3.11.2 PyPI version JSON
download
home_pagehttp://buildbot.net/
SummaryThe Continuous Integration Framework
upload_time2024-05-07 11:50:35
maintainerDustin J. Mitchell
docs_urlNone
authorBrian Warner
requires_pythonNone
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Buildbot: The Continuous Integration Framework
==============================================

:Site: https://buildbot.net
:Original author: Brian Warner <warner-buildbot @ lothar . com>
:Current maintainer: `The Botherders <https://github.com/buildbot/botherders>`_.

.. contents::
   :local:

Buildbot is an open-source continuous integration framework for automating software build, test, and release processes.

* Buildbot is easy to set up, but very extensible and customizable.
  It supports arbitrary build processes, and is not limited to common build processes for particular languages (e.g., autotools or ant)
* Buildbot supports building and testing on a variety of platforms.
  Developers, who do not have the facilities to test their changes everywhere before committing, will know shortly afterwards whether they have broken the build or not.
* Buildbot allows to track various metrics (warning counts, lint checks, image size, compile time, etc) over time.
* Buildbot has minimal requirements for workers: using virtualenv, only a Python installation is required.
* Workers can be run behind a NAT firewall and communicate with the master.
* Buildbot has a variety of status-reporting tools to get information about builds in front of developers in a timely manner.

Documentation
-------------

See https://docs.buildbot.net/current/ for documentation of the current version of Buildbot.

Docker container
----------------
Buildbot comes with a ready to use docker container available at buildbot/buildbot-master
Following environment variables are supported for configuration:

* ``BUILDBOT_CONFIG_URL``: http url to a config tarball.
    The tarball must be in the .tar.gz format.
    The tarball must contain a directory, which will contain a master.cfg file in it.
    The tarball may contain a twisted.tac file in it, which can be used to configure the twisted logging system (e.g to log in logstash instead of the default stdout).
    The tarball will be extracted in a directory named ``$BUILDBOT_CONFIG_DIR`` in the master directory, and can contain additional python module that the master.cfg can load.
    If ``BUILDBOT_CONFIG_URL`` does not end with .tar.gz, it is considered to be an URL to the direct ``master.cfg``

* ``BUILDBOT_CONFIG_DIR`` directory where to extract the config tarball within the master directory.
  It is important so that you can do relative imports in your master.cfg like it is done in the metabbotcfg (https://github.com/buildbot/metabbotcfg)


Requirements
------------

See https://docs.buildbot.net/current/manual/installation/index.html

Briefly: python, Twisted, Jinja2, simplejson, and SQLite.
Simplejson and SQLite are included with recent versions of Python.

Contributing
-------------

Please send your patches to https://github.com/buildbot/buildbot/

Support
-------

Please send questions, file bugs, etc, on the Buildbot Github project https://github.com/buildbot/buildbot/issues.
Alternatively, write to the buildbot-devel mailing list reachable through https://buildbot.net/.

Copying
-------

Buildbot is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.

For full details, please see the file named COPYING in the top directory of the source tree.
You should have received a copy of the GNU General Public License along with this program.
If not, see <http://www.gnu.org/licenses/>.

            

Raw data

            {
    "_id": null,
    "home_page": "http://buildbot.net/",
    "name": "buildbot",
    "maintainer": "Dustin J. Mitchell",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "dustin@v.igoro.us",
    "keywords": null,
    "author": "Brian Warner",
    "author_email": "warner-buildbot@lothar.com",
    "download_url": "https://files.pythonhosted.org/packages/1b/92/ce2f432b73299ea1c32b4868504c53b6c82103e263daeb6f4672d408059a/buildbot-3.11.2.tar.gz",
    "platform": null,
    "description": "Buildbot: The Continuous Integration Framework\n==============================================\n\n:Site: https://buildbot.net\n:Original author: Brian Warner <warner-buildbot @ lothar . com>\n:Current maintainer: `The Botherders <https://github.com/buildbot/botherders>`_.\n\n.. contents::\n   :local:\n\nBuildbot is an open-source continuous integration framework for automating software build, test, and release processes.\n\n* Buildbot is easy to set up, but very extensible and customizable.\n  It supports arbitrary build processes, and is not limited to common build processes for particular languages (e.g., autotools or ant)\n* Buildbot supports building and testing on a variety of platforms.\n  Developers, who do not have the facilities to test their changes everywhere before committing, will know shortly afterwards whether they have broken the build or not.\n* Buildbot allows to track various metrics (warning counts, lint checks, image size, compile time, etc) over time.\n* Buildbot has minimal requirements for workers: using virtualenv, only a Python installation is required.\n* Workers can be run behind a NAT firewall and communicate with the master.\n* Buildbot has a variety of status-reporting tools to get information about builds in front of developers in a timely manner.\n\nDocumentation\n-------------\n\nSee https://docs.buildbot.net/current/ for documentation of the current version of Buildbot.\n\nDocker container\n----------------\nBuildbot comes with a ready to use docker container available at buildbot/buildbot-master\nFollowing environment variables are supported for configuration:\n\n* ``BUILDBOT_CONFIG_URL``: http url to a config tarball.\n    The tarball must be in the .tar.gz format.\n    The tarball must contain a directory, which will contain a master.cfg file in it.\n    The tarball may contain a twisted.tac file in it, which can be used to configure the twisted logging system (e.g to log in logstash instead of the default stdout).\n    The tarball will be extracted in a directory named ``$BUILDBOT_CONFIG_DIR`` in the master directory, and can contain additional python module that the master.cfg can load.\n    If ``BUILDBOT_CONFIG_URL`` does not end with .tar.gz, it is considered to be an URL to the direct ``master.cfg``\n\n* ``BUILDBOT_CONFIG_DIR`` directory where to extract the config tarball within the master directory.\n  It is important so that you can do relative imports in your master.cfg like it is done in the metabbotcfg (https://github.com/buildbot/metabbotcfg)\n\n\nRequirements\n------------\n\nSee https://docs.buildbot.net/current/manual/installation/index.html\n\nBriefly: python, Twisted, Jinja2, simplejson, and SQLite.\nSimplejson and SQLite are included with recent versions of Python.\n\nContributing\n-------------\n\nPlease send your patches to https://github.com/buildbot/buildbot/\n\nSupport\n-------\n\nPlease send questions, file bugs, etc, on the Buildbot Github project https://github.com/buildbot/buildbot/issues.\nAlternatively, write to the buildbot-devel mailing list reachable through https://buildbot.net/.\n\nCopying\n-------\n\nBuildbot is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\nSee the GNU General Public License for more details.\n\nFor full details, please see the file named COPYING in the top directory of the source tree.\nYou should have received a copy of the GNU General Public License along with this program.\nIf not, see <http://www.gnu.org/licenses/>.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "The Continuous Integration Framework",
    "version": "3.11.2",
    "project_urls": {
        "Homepage": "http://buildbot.net/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34e7720c22472551c26df11e17a798bc17b0aac5fd46100f384cbf209eb1a047",
                "md5": "9fca5564c9159b6d645885557629f1c8",
                "sha256": "0e392c17e538dc8b7eb631d14efa414ae4439ffc2c9726da7d4bbdf94b4b2279"
            },
            "downloads": -1,
            "filename": "buildbot-3.11.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9fca5564c9159b6d645885557629f1c8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 1021058,
            "upload_time": "2024-05-07T11:50:01",
            "upload_time_iso_8601": "2024-05-07T11:50:01.163503Z",
            "url": "https://files.pythonhosted.org/packages/34/e7/720c22472551c26df11e17a798bc17b0aac5fd46100f384cbf209eb1a047/buildbot-3.11.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b92ce2f432b73299ea1c32b4868504c53b6c82103e263daeb6f4672d408059a",
                "md5": "63574277459b3545e11dd757b5e02226",
                "sha256": "c7b45a0297c87b5c7b3f2d4a2d009ca2dc54e9d2515d33a4ebb5be40e84d25fd"
            },
            "downloads": -1,
            "filename": "buildbot-3.11.2.tar.gz",
            "has_sig": false,
            "md5_digest": "63574277459b3545e11dd757b5e02226",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2524338,
            "upload_time": "2024-05-07T11:50:35",
            "upload_time_iso_8601": "2024-05-07T11:50:35.363176Z",
            "url": "https://files.pythonhosted.org/packages/1b/92/ce2f432b73299ea1c32b4868504c53b6c82103e263daeb6f4672d408059a/buildbot-3.11.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-07 11:50:35",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "buildbot"
}
        
Elapsed time: 0.25062s