Reputation: 1189
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
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