diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-12-29 17:26:19 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-29 17:26:19 -0800 |
| commit | a68f8866a7a9749f6584845f80e03659fe04acc5 (patch) | |
| tree | 926a1838dba652d91228c19830dbc771150681be | |
| parent | fe80a1d014e186c3a323995644e0a0fdd1506ed1 (diff) | |
| parent | 67cc77ccde95da116610d753e1a93af44d93eb90 (diff) | |
| download | rust-a68f8866a7a9749f6584845f80e03659fe04acc5.tar.gz rust-a68f8866a7a9749f6584845f80e03659fe04acc5.zip | |
Rollup merge of #38609 - alexcrichton:less-compress, r=japaric
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 3a9635a8618..f439e4cdf72 100644 --- a/.travis.yml +++ b/.travis.yml @@ -78,7 +78,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 |
