From e67990976289b0ee1cf830fc89f1b439925c1b96 Mon Sep 17 00:00:00 2001 From: Pentarctagon Date: Fri, 7 Feb 2020 15:42:57 -0600 Subject: [PATCH] Increase the xcode job's ccache size. For whatever reason the existing limit of 200MB is no longer enough, resulting in a significant number of cache misses, which results in partial rebuilds taking far longer than they should. --- utils/travis/steps/script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/travis/steps/script.sh b/utils/travis/steps/script.sh index dcaa6044d54..1218b5ad63e 100755 --- a/utils/travis/steps/script.sh +++ b/utils/travis/steps/script.sh @@ -8,7 +8,7 @@ if [ "$TRAVIS_OS_NAME" = "osx" ]; then cd ./projectfiles/Xcode - export CCACHE_MAXSIZE=200M + export CCACHE_MAXSIZE=500M export CCACHE_COMPILERCHECK=content xcodebuild GCC_GENERATE_DEBUGGING_SYMBOLS=NO -project "The Battle for Wesnoth.xcodeproj" -target "The Battle for Wesnoth" -configuration Debug