From 795c37b2a49e089984ec5c266e732ed217449c93 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 29 Oct 2019 12:20:33 -0400 Subject: [PATCH] ci: remove existing base_dir ccache config on osx build before adding new one Summary: ensure that this file does not balloon to infinite size Reviewers: bu5hm4n Reviewed By: bu5hm4n Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D10538 --- .ci/ci-setup-ccache.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/ci-setup-ccache.sh b/.ci/ci-setup-ccache.sh index f93b64f847..ab7d3b8613 100755 --- a/.ci/ci-setup-ccache.sh +++ b/.ci/ci-setup-ccache.sh @@ -7,6 +7,7 @@ if [ "$DISTRO" != "" ] ; then docker exec $(cat $HOME/cid) ccache -pz else cp .ci/ccache.conf ~/.ccache + sed -iE '/^base_dir/d' ~/.ccache/ccache.conf echo "base_dir = $pwd" >> ~/.ccache/ccache.conf ccache -pz fi