diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2018-07-20 18:37:16 -0400 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2018-07-30 18:16:20 +0200 |
commit | baf8f46658e17cc0f792e21e31c92703fee7bb9b (patch) | |
tree | eb6d18eb66538774d9f10e2c557fb446aa49dd3a /.ci | |
parent | 8e8f4794275dcbec7e1974a137036695d468a52c (diff) | |
download | efl-baf8f46658e17cc0f792e21e31c92703fee7bb9b.tar.gz |
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
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/ci-configure.sh | 4 |
1 files 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 |