stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=816b3b36379b2eafc2cd91cd9d63597996f45a2a
commit 816b3b36379b2eafc2cd91cd9d63597996f45a2a Author: Stefan Schmidt <[email protected]> Date: Thu Jun 4 15:19:47 2020 +0200 ci: simplify ccache setup handling We no longer need the special case for release ready. This was needed for the way autotools setup directories, which we no longer use. (We are not having a config.log anymore) Differential Revision: https://phab.enlightenment.org/D11937 --- .ci/docker-ccache-setup.sh | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.ci/docker-ccache-setup.sh b/.ci/docker-ccache-setup.sh index caba08ac81..81406cb8bc 100755 --- a/.ci/docker-ccache-setup.sh +++ b/.ci/docker-ccache-setup.sh @@ -4,10 +4,5 @@ CI_BUILD_TYPE="$1" cp .ci/ccache.conf ~/.ccache -if [ "$1" = "release-ready" ] ; then - sed -iE '/^base_dir/d' ~/.ccache/ccache.conf - echo "base_dir = $(pwd)/$(grep '^PACKAGE_STRING' config.log|cut -d\' -f2|tr ' ' -)" >> ~/.ccache/ccache.conf -else - sed -iE '/^base_dir/d' ~/.ccache/ccache.conf - echo "base_dir = $pwd" >> ~/.ccache/ccache.conf -fi +sed -iE '/^base_dir/d' ~/.ccache/ccache.conf +echo "base_dir = $pwd" >> ~/.ccache/ccache.conf --
