Will_of_fire
Will_of_fire

Reputation: 1189

Why do some github commits don't reflect travis build status?

enter image description here

I haven't used Travis-CI but I can see that some GitHub commits have a green mark which shows that Travis build has succeeded and some have a red mark which shows that Travis builds failed. But I am wondering why do a few commits don't have any status?

I am looking at the commits of apache commons-math.

Upvotes: 2

Views: 177

Answers (1)

jhpratt
jhpratt

Reputation: 7120

Presumably there were multiple commits locally, which was only pushed after commit 583d9ec. Given that the status of an old commit is irrelevant, Travis CI ignores those and only builds the most recent (source). If any issues did arise, a build could have still been manually triggered, revealing which commit broke something.

Upvotes: 1

Related Questions