From: Richard Levitte Date: Sun, 6 Mar 2016 23:33:35 +0000 (+0100) Subject: Use ccache for the unified builds X-Git-Tag: OpenSSL_1_1_0-pre4~239 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=bd5fbfe22bfc95949836bfedea00571b41cdbddd Use ccache for the unified builds This may speed up our builds considerably Reviewed-by: Emilia Käsper --- diff --git a/.travis.yml b/.travis.yml index f1c43cc414..dff2f94978 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;