-
Notifications
You must be signed in to change notification settings - Fork 420
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Motivation: The CI quite often fails because we get rate limited when downloading protobuf from GitHub. Let's try sticking it in the Travis cache; it still has to be downloaded from there but hopefully we won't get rate limited. Modifications: - Cache protobuf - Remove .build cache (the cache is currently *huge* and fetching this probably slows things down) Result: - Maybe fewer CI failures?
- Loading branch information
Showing
2 changed files
with
25 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,8 +87,8 @@ stages: | |
cache: | ||
apt: true | ||
directories: | ||
- .build | ||
- $HOME/bin_cache | ||
- $HOME/zip_cache | ||
|
||
addons: | ||
apt: | ||
|