Eric Elliott
Eric Elliott

Reputation: 4731

Travis CI GitHub integration not updating build status?

The Travis-CI build for this GitHub pull request failed due to a problem installing a dependency. After updating it and trying again, the build seemed to pass. However, the build status indicator displayed inline on GitHub is still reporting a failed build. Does anybody know why, or what can be done about it?

Upvotes: 1

Views: 538

Answers (1)

Odi
Odi

Reputation: 6916

Only one build passed (35.3, the one on node 0.10.x), the other two failed, which means the build failed in total (even though one run was okay).

If the build on node 0.6 and node 0.8 are allowed to fail, you can specify that in your .travis.yml. This would then lead to a successful build:

matrix:
  allow_failures:
    - node_js: 0.6
    - node_js: 0.8

Or if you don't need those two extra builds, just remove 0.6 and 0.8 from your .travis.yml

Upvotes: 1

Related Questions