aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-07 00:33:35 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-08 16:59:27 +0100
commitbd5fbfe22bfc95949836bfedea00571b41cdbddd (patch)
tree6c6a3bff807bf680a9f05d6559ea064488d675d2
parentde439d4428934b58581993ca0aae39858effc005 (diff)
downloadopenssl-bd5fbfe22bfc95949836bfedea00571b41cdbddd.zip
openssl-bd5fbfe22bfc95949836bfedea00571b41cdbddd.tar.gz
openssl-bd5fbfe22bfc95949836bfedea00571b41cdbddd.tar.bz2
Use ccache for the unified builds
This may speed up our builds considerably Reviewed-by: Emilia Käsper <emilia@openssl.org>
-rw-r--r--.travis.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index f1c43cc..dff2f94 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,8 +1,10 @@
language: c
+cache: ccache
addons:
apt:
packages:
+ - ccache
- clang-3.6
- gcc-5
- binutils-mingw-w64
@@ -62,6 +64,7 @@ before_script:
srcdir=../_srcdir;
mkdir _build;
cd _build;
+ CC="ccache $CC";
else
srcdir=.;
cd _srcdist;