From f11ddc6575383e31902c190617b25fc572193ad7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francesco=20Borz=C3=AC?= Date: Mon, 31 Aug 2020 17:50:30 +0200 Subject: [PATCH] fix(CI/macOS): ccache issue (#3389) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(CI/macOS): ccache issue * Update ci-compile.sh * Update ci-compile.sh * chore: set cache limit to 5G Co-authored-by: Stefano Borzì --- apps/ci/mac/ci-compile.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/ci/mac/ci-compile.sh b/apps/ci/mac/ci-compile.sh index fc0a008b5..9e5bb670f 100755 --- a/apps/ci/mac/ci-compile.sh +++ b/apps/ci/mac/ci-compile.sh @@ -1,7 +1,8 @@ #!/usr/bin/env bash export CCACHE_CPP2=true -export CCACHE_MAXSIZE='500MB' +export CCACHE_MAXSIZE='5G' +export CCACHE_COMPRESS=1 ccache -s mkdir var/build/obj && cd var/build/obj;