summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2019-10-25 13:33:41 -0400
committerMike Blumenkrantz <zmike@samsung.com>2019-10-25 13:33:41 -0400
commit6abba55b5c502cced32e39d699e777661418291b (patch)
tree5ae89a072dea9fd6270ee98d86f4e13469bc9bd6 /.ci
parentfee91831cb18d210406a946f3066e4e8da1f27cb (diff)
downloadefl-6abba55b5c502cced32e39d699e777661418291b.tar.gz
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
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/ci-setup-ccache.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/ci-setup-ccache.sh b/.ci/ci-setup-ccache.sh
index 0a5087883f..f93b64f847 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