git plugin to show the OpenStack job log URL for a commit
Go to file
Doug Hellmann 8bf155e917 update announce.rst 2017-10-02 12:00:41 -04:00
git_os_job add --reverse option to go from log URL to review URL 2017-10-02 11:53:15 -04:00
.gitignore ignore pbr build artifacts 2013-09-12 15:38:14 -04:00
LICENSE Initial commit 2013-09-11 15:26:15 -07:00
README.rst fix missing link in readme 2013-09-12 15:38:41 -04:00
announce.rst update announce.rst 2017-10-02 12:00:41 -04:00
setup.cfg update author email 2017-10-02 11:59:12 -04:00
setup.py Update copyright and readme 2013-09-12 15:25:03 -04:00
tox.ini Set up tox 2013-09-12 15:43:46 -04:00

README.rst

git-os-job

git plugin to show the OpenStack job log for a commit

What is git-os-job?

The OpenStack project stores the logs for all of the test jobs related to a commit on http://logs.openstack.org organized by the commit hash. To review the logs after a job runs, most developers start with the message jenkins leaves on gerrit, and click through to the log files. Not all jenkins jobs are triggered by or related to a gerrit review, though (e.g, release tags).

git-os-job makes it easy to find those logs by finding the hash of the commit and using it to build the right URL. It will then either print the URL or open a web browser directly.

Examples

Look at the jobs related to the HEAD commit, usually in a development branch that has been submitted to gerrit using git-review already.:

$ git os-job

Look at the jobs related to the previous commit, such as when a development branch has a series of independent changes in it:

$ git os-job HEAD^1

Look at the jobs related to a specific commit by tag, such as after submitting a release tag:

$ git os-job version.tag

Contributing and Reporting Bugs

Please use the bug tracker on the github repository to report problems. Patches for improvements are welcome, too.

https://github.com/dhellmann/git-os-job