From baf8f46658e17cc0f792e21e31c92703fee7bb9b Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 20 Jul 2018 18:37:16 -0400 Subject: [PATCH] ci: disable dependency tracking in ci builds ci builds are only built once, so tracking dependencies is just a waste of build time Differential Revision: https://phab.enlightenment.org/D6658 --- .ci/ci-configure.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/ci-configure.sh b/.ci/ci-configure.sh index e7bf7255bb..0d1f65c253 100755 --- a/.ci/ci-configure.sh +++ b/.ci/ci-configure.sh @@ -6,7 +6,7 @@ set -e CI_BUILD_TYPE="$1" -DEFAULT_LINUX_COPTS="--prefix=/usr/ --with-tests=regular --disable-cxx-bindings -C" +DEFAULT_LINUX_COPTS="--prefix=/usr/ --with-tests=regular --disable-cxx-bindings --disable-dependency-tracking -C" WAYLAND_LINUX_COPTS=" --enable-wayland --enable-elput --enable-drm \ --enable-wayland-ivi-shell --enable-gl-drm --with-opengl=es --enable-egl" @@ -60,7 +60,7 @@ if [ "$DISTRO" != "" ] ; then --env LD="ld.gold" $(cat $HOME/cid) sh -c "./configure $OPTS" travis_endfold configure else - OSX_COPTS="--disable-cxx-bindings --with-tests=regular -C" + OSX_COPTS="--disable-cxx-bindings --with-tests=regular --disable-dependency-tracking -C" # Prepare OSX env for build mkdir -p ~/Library/LaunchAgents