From: Mike Blumenkrantz Date: Fri, 25 Oct 2019 17:33:41 +0000 (-0400) Subject: ci: use shell to directly set base_dir for osx builds X-Git-Tag: submit/tizen/20191111.023126~193 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b6c9c2ac085d15add1a73f06fe6f4529e83eb775;p=platform%2Fupstream%2Fefl.git ci: use shell to directly set base_dir for osx builds Summary: this crashes somehow and is impossible to debug remotely Reviewers: bu5hm4n Reviewed By: bu5hm4n Subscribers: bu5hm4n, cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D10529 --- diff --git a/.ci/ci-setup-ccache.sh b/.ci/ci-setup-ccache.sh index 0a50878..f93b64f 100755 --- a/.ci/ci-setup-ccache.sh +++ b/.ci/ci-setup-ccache.sh @@ -7,6 +7,6 @@ if [ "$DISTRO" != "" ] ; then docker exec $(cat $HOME/cid) ccache -pz else cp .ci/ccache.conf ~/.ccache - ccache -o base_dir="$(pwd)" + echo "base_dir = $pwd" >> ~/.ccache/ccache.conf ccache -pz fi