Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to show the the Jenkins build status on my project's GitHub Readme.md?

I use Jenkins to run continuous integration builds. After each commit it ensures that everything compiles, as well as executes unit and integration tests, before finally producing documentation and release bundles.

There's still a risk of inadvertently committing something that breaks the build. It would be good for users visiting the GitHub project page to know the current master is in that state.

share|improve this question
Why was this down-voted? Is there something obvious in the Jenkins user-guide that I missed? I did google before-hand, and couldn't find anything. – Jasper Blues Jan 11 at 8:46
The Travis build server can do something like this, but I'm using Jenkins on Osx. Here's the kind of thing I'm after: github.com/CocoaPods/CocoaPods – Jasper Blues Jan 11 at 8:50
possible duplicate of How do show my tests passing/failing in Github? – random Jan 11 at 22:24
The link to the similar question recommends Travis, which doesn't currently support iOS and OSX, so it does not answer the question. – Jasper Blues Feb 21 at 2:52

2 Answers

up vote 1 down vote accepted

The Commit Status API allows you to see the "Repo Statuses API".

And since April 26th 2013, you now can see the build status on your GitHub repo branch page:

build status on GitHub repo branches

That means it is another way, by visiting the GitHub project page, to see those statuses instead of having only Jenkins.

Starting April 30th, 2013, the API endpoint for commit statuses has been extended to allow branch and tag names, as well as commit SHAs.

share|improve this answer

This should work: https://wiki.jenkins-ci.org/display/JENKINS/Embeddable+Build+Status+Plugin

You should be able to embed this into your README.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.