ci: use shell to directly set base_dir for osx builds
authorMike Blumenkrantz <zmike@samsung.com>
Fri, 25 Oct 2019 17:33:41 +0000 (13:33 -0400)
committerWonki Kim <wonki_.kim@samsung.com>
Mon, 11 Nov 2019 02:20:38 +0000 (11:20 +0900)
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

.ci/ci-setup-ccache.sh

index 0a50878..f93b64f 100755 (executable)
@@ -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