Skip to content

Commit a68f886

Browse files
authored
Rollup merge of rust-lang#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.
2 parents fe80a1d + 67cc77c commit a68f886

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ before_cache:
7878
- docker history -q rust-ci |
7979
grep -v missing |
8080
xargs docker save |
81-
gzip -9 > $HOME/docker/rust-ci.tar.gz
81+
gzip > $HOME/docker/rust-ci.tar.gz
8282
before_install:
8383
- zcat $HOME/docker/rust-ci.tar.gz | docker load || true
8484

0 commit comments

Comments
 (0)