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
This commit is contained in:
Mike Blumenkrantz 2019-10-29 12:20:33 -04:00
parent 03f873faf2
commit 795c37b2a4
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ if [ "$DISTRO" != "" ] ; then
docker exec $(cat $HOME/cid) ccache -pz docker exec $(cat $HOME/cid) ccache -pz
else else
cp .ci/ccache.conf ~/.ccache cp .ci/ccache.conf ~/.ccache
sed -iE '/^base_dir/d' ~/.ccache/ccache.conf
echo "base_dir = $pwd" >> ~/.ccache/ccache.conf echo "base_dir = $pwd" >> ~/.ccache/ccache.conf
ccache -pz ccache -pz
fi fi