diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-12-25 21:56:07 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-12-25 22:13:50 -0800 |
| commit | 67cc77ccde95da116610d753e1a93af44d93eb90 (patch) | |
| tree | b2941cc43244ebaa3972331b878a055de4d873f8 | |
| parent | 5752eae5f5ce3517d36f6668619dd2c70e6d2d88 (diff) | |
| download | rust-67cc77ccde95da116610d753e1a93af44d93eb90.tar.gz rust-67cc77ccde95da116610d753e1a93af44d93eb90.zip | |
travis: Don't use -9 on gzip
I timed this locally and plain old `gzip` took 2m06s while `gzip -9` took a whopping 6m23s to save a mere 4MB out of 1.2GB. Let's shave a few minutes off the Android builder by turning down the compression level.
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index ea8c94af80b..47bcbe94432 100644 --- a/.travis.yml +++ b/.travis.yml @@ -76,7 +76,7 @@ before_cache: - docker history -q rust-ci | grep -v missing | xargs docker save | - gzip -9 > $HOME/docker/rust-ci.tar.gz + gzip > $HOME/docker/rust-ci.tar.gz before_install: - zcat $HOME/docker/rust-ci.tar.gz | docker load || true |
