Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: retry certain steps on TravisCI to get more stable builds #249

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ env:
- secure: bGENSGZguDwxsHJu9JyEggr0KhNd9l/RguvlS4zknMV32Hujtt60tsD9X9IKRIO96Fv4loDburOco38SdzezVzd6AS/wsxJsoqD//C2+BXJKzU4MsGXeqS5hx6r2CiTWCnDoIu2QvyK9qiO+Gu0VII76//3pa50m7EVYT79jVxM=

before_install:
- npm install --quiet -g grunt-cli
- npm install -g coveralls@2.8.0 &> install-coveralls.log
- travis_retry npm install --quiet -g grunt-cli
- travis_retry npm install -g coveralls@2.8.0 &> install-coveralls.log

before_script:
- mkdir -p $LOGS_DIR
Expand All @@ -24,7 +24,7 @@ before_script:
- ./build/sauce/connect_wait.sh

script:
- grunt ci
- travis_retry grunt ci

after_success:
- cat test-results/*.info test-results/*/*/*.info | coveralls && echo "Successfully sent coverage to https://coveralls.io"
Expand Down