diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2018-07-13 16:08:42 -0400 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2018-07-26 08:55:58 +0200 |
commit | d568c6f1251048e0e3378beccbf9d915ce12fa28 (patch) | |
tree | 899269fb46de4c93e7fff85157e365a583577fcf /.ci | |
parent | 6652373897e3ca2c4d95e41b60aa903227947bc0 (diff) | |
download | efl-d568c6f1251048e0e3378beccbf9d915ce12fa28.tar.gz |
ci: use manual autoreconf && configure calls
our autogen.sh stupidly destroys all the autotools cache files, so ensure that
we keep them around to speed up configure
Differential Revision: https://phab.enlightenment.org/D6615
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/ci-configure.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.ci/ci-configure.sh b/.ci/ci-configure.sh index 146b9b6eb0..74f4848a2f 100755 --- a/.ci/ci-configure.sh +++ b/.ci/ci-configure.sh @@ -4,9 +4,6 @@ set -e CI_BUILD_TYPE="$1" -export MAKEFLAGS="-j5" -export EIO_MONITOR_POLL=1 - DEFAULT_LINUX_COPTS="--prefix=/usr/ --with-tests=regular --disable-cxx-bindings -C" WAYLAND_LINUX_COPTS=" --enable-wayland --enable-elput --enable-drm \ @@ -52,7 +49,7 @@ if [ "$DISTRO" != "" ] ; then docker exec $(cat $HOME/cid) sh -c 'rm -f ~/.ccache/ccache.conf' docker exec --env MAKEFLAGS="-j5" --env EIO_MONITOR_POLL=1 --env CC="ccache gcc" \ --env CXX="ccache g++" --env CFLAGS="-fdirectives-only" --env CXXFLAGS="-fdirectives-only" \ - $(cat $HOME/cid) ./autogen.sh $OPTS + $(cat $HOME/cid) sh -c "autoreconf -iv && ./configure $OPTS" else OSX_COPTS="--disable-cxx-bindings --with-tests=regular -C" @@ -68,5 +65,6 @@ else # Normal build test of all targets rm -f ~/.ccache/ccache.conf - ./autogen.sh $OSX_COPTS + autoreconf -iv + ./configure $OSX_COPTS fi |