To install this package, run in Emacs:
M-x package-install RET buildbot RET
Buildbot is a free software continuous integration tool. buildbot.el is an emacs interface to view build information on a Buildbot instance. It supports newer versions* of Buildbot (>=0.9.0) but not older versions (<0.9.0) and shows views for branches, revisions, builds, steps, logs and builders.
It has been tested for the following instances (the urls are to be
used as buildbot-host
):
(setq buildbot-api-changes-direct-filter t)
)*: The linked release notes describes the significant changes at 0.9.0.
Buildbot is currently available at elpa-devel:
(add-to-list 'package-archives ("elpa-devel" . "https://elpa.gnu.org/devel/")) (package-refresh-contents) (package-install 'buildbot)
Clone this repo, and add to load path (assuming you clone to
~/.emacs.d
):
cd ~/.emacs.d git clone https://g.ypei.me/buildbot.el.git
(add-to-list 'load-path "~/.emacs.d/buildbot.el")
After that, require buildbot and set the host and builders, like so
(require 'buildbot) (setq buildbot-default-host "https://buildbot.mariadb.org")
Entry points:
M-x buildbot-revision-open
prompts for a revision id (e.g. commit
hash in git), and opens a view of the revision, including builds
associated with changes associated with the revision.M-x buildbot-branch-open
prompts for a branch name, and opens up a
view of revisions of this branch.M-x buildbot-builder-open
prompts for a builder name from a list
of available builders, and opens up a view of recent builds by this
builder.
buildbot.el
is maintained by Yuchen Pei <id@ypei.org> and covered by
GNU AGPLv3+. You may find the license text in a file named
COPYING.agpl3 in the project tree.