Disable make clean at the end of configure step in GitLab CI

(cherry picked from commit a1d783bbe2)
This commit is contained in:
Ondřej Surý 2018-08-17 16:50:48 +02:00
parent 2669905f2d
commit 6ccc609ca4

View file

@ -114,7 +114,7 @@ stages:
- test -w "${CCACHE_DIR}" && export PATH="/usr/lib/ccache:${PATH}"
- autoreconf -fi
script:
- ./configure --enable-developer --with-libtool --disable-static --with-atf=/usr --with-libidn2 --prefix=$HOME/.local "${EXTRA_CONFIGURE}"
- ./configure --enable-developer --with-libtool --disable-static --with-atf=/usr --with-libidn2 --prefix=$HOME/.local --without-make-clean "${EXTRA_CONFIGURE}" || cat config.log
- make -j${PARALLEL_JOBS_BUILD:-1} -k all V=1
artifacts:
expire_in: '1 hour'