From cabe1163d83d5958ceb6ef31302b57f7d29940a4 Mon Sep 17 00:00:00 2001 From: Patrick Lewis Date: Mon, 26 Apr 2021 16:34:30 -0700 Subject: [PATCH] fix(CI/macOS): change build type to release (#5466) * fix(CI/macOS): change build type to release * fix(CI/macOS): change ccache options * fix(CI/macOS): test change build type back to debug * fix(CI/macOS): change build type back to release * fix(CI/macOS): change ccache size --- apps/ci/mac/ci-compile.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/apps/ci/mac/ci-compile.sh b/apps/ci/mac/ci-compile.sh index db83d6a85..b3ed9de4c 100755 --- a/apps/ci/mac/ci-compile.sh +++ b/apps/ci/mac/ci-compile.sh @@ -1,8 +1,9 @@ #!/usr/bin/env bash export CCACHE_CPP2=true -export CCACHE_MAXSIZE='1G' -export CCACHE_COMPRESS=9 +export CCACHE_MAXSIZE='500M' +export CCACHE_COMPRESS=1 +export CCACHE_COMPRESSLEVEL=9 ccache -s cd var/build/obj @@ -11,7 +12,7 @@ time cmake ../../../ \ -DTOOLS=1 \ -DBUILD_TESTING=1 \ -DSCRIPTS=1 \ --DCMAKE_BUILD_TYPE=Debug \ +-DCMAKE_BUILD_TYPE=Release \ -DMYSQL_ADD_INCLUDE_PATH=/usr/local/include \ -DMYSQL_LIBRARY=/usr/local/lib/libmysqlclient.dylib \ -DREADLINE_INCLUDE_DIR=/usr/local/opt/readline/include \