summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2020-06-04 15:19:47 +0200
committerStefan Schmidt <s.schmidt@samsung.com>2020-06-04 15:45:51 +0200
commitad646bba83c715d4be5d14339e01714b9ac9b063 (patch)
treef0f5d0a6960ba532e26bce0a89264f21b206d34c
parentb644cdeb1c669d529836ca91537edefc43f5c176 (diff)
downloadefl-ad646bba83c715d4be5d14339e01714b9ac9b063.tar.gz
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
-rwxr-xr-x.ci/docker-ccache-setup.sh9
1 files 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