Skip to content

Commit

Permalink
retry downloading dependencies (#178)
Browse files Browse the repository at this point in the history
retry downloading dependencies
### Test Plan
* CI

### References
* https://docs.travis-ci.com/user/common-build-problems/#timeouts-installing-dependencies
  • Loading branch information
czimergebot authored Mar 5, 2020
1 parent b770f3d commit 968da0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ dist: trusty
cache: pip
install:
# terraform
- wget -t 10 -O terraform.zip https://releases.hashicorp.com/terraform/0.12.19/terraform_0.12.19_linux_amd64.zip
- travis_retry wget -t 10 -O terraform.zip https://releases.hashicorp.com/terraform/0.12.19/terraform_0.12.19_linux_amd64.zip
- unzip terraform.zip
- mv terraform ~/bin/
- chmod +x ~/bin/terraform
# terraform-provider-bless
- wget -t 10 -O terraform-provider-bless.tar https://github.com/chanzuckerberg/terraform-provider-bless/releases/download/v0.2.10/terraform-provider-bless_0.2.10_linux_amd64.tar.gz
- travis_retry wget -t 10 -O terraform-provider-bless.tar https://github.com/chanzuckerberg/terraform-provider-bless/releases/download/v0.2.10/terraform-provider-bless_0.2.10_linux_amd64.tar.gz
- tar -C ~/bin -xzf terraform-provider-bless.tar
# terraform-docs
# - wget -t 10 -O terraform-docs https://github.com/segmentio/terraform-docs/releases/download/v0.6.0/terraform-docs-v0.6.0-linux-amd64
Expand Down

0 comments on commit 968da0b

Please sign in to comment.