Reputation: 12495
Especially if a rails gem, for example, has "failing" as its build status?
Upvotes: 17
Views: 6574
Reputation: 1324128
It is the result of a build scheduler able to communicate back to GitHub the build result, through the Commit Status API, using the Repo Statuses API.
And starting April 26th 2013, you can see that same build status on your GitHub repo branch page:
Starting April 30th, 2013, the API endpoint for commit statuses has been extended to allow branch and tag names, as well as commit SHAs.
Upvotes: 2
Reputation: 7434
This is a feature of the Travis Continuous Integration service.
http://about.travis-ci.org/docs/user/status-images/
Upvotes: 2
Reputation: 12235
I think what you're talking about is the build status image provided by travis-ci
(or maybe any jenkins
setup, I don't know). It is used to inform users of the build status of the master branch of the repository, allowing them to know if it safe to refer to the repository on their Gemfile without having to setup and launch the test suite.
Upvotes: 8