Merge branch 'gitlab-ci-dont-run-make-clean' into 'master'

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

See merge request isc-projects/bind9!714
This commit is contained in:
Ondřej Surý
2018-08-28 01:18:18 -04:00

View File

@@ -115,7 +115,7 @@ stages:
- test -w "${CCACHE_DIR}" && export PATH="/usr/lib/ccache:${PATH}"
# - ./autogen.sh
script:
- ./configure --enable-developer --with-libtool --disable-static --with-atf=/usr --prefix=$HOME/.local $EXTRA_CONFIGURE || cat config.log
- ./configure --enable-developer --with-libtool --disable-static --with-atf=/usr --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'