mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Run autoreconf -fi in precheck phase and disable maintainer mode in build jobs
This commit is contained in:
parent
2b1131cb28
commit
0bdc3df5a0
1 changed files with 18 additions and 1 deletions
|
|
@ -101,15 +101,27 @@ stages:
|
||||||
<<: *debian_sid_amd64_image
|
<<: *debian_sid_amd64_image
|
||||||
stage: precheck
|
stage: precheck
|
||||||
|
|
||||||
|
autoconf: &autoconf_job
|
||||||
|
<<: *default_triggering_rules
|
||||||
|
<<: *debian_sid_amd64_image
|
||||||
|
stage: precheck
|
||||||
|
script:
|
||||||
|
- autoreconf -fi
|
||||||
|
artifacts:
|
||||||
|
untracked: true
|
||||||
|
expire_in: "1 hour"
|
||||||
|
|
||||||
.build: &build_job
|
.build: &build_job
|
||||||
<<: *default_triggering_rules
|
<<: *default_triggering_rules
|
||||||
stage: build
|
stage: build
|
||||||
before_script:
|
before_script:
|
||||||
- test -w "${CCACHE_DIR}" && export PATH="/usr/lib/ccache:${PATH}"
|
- test -w "${CCACHE_DIR}" && export PATH="/usr/lib/ccache:${PATH}"
|
||||||
script:
|
script:
|
||||||
- ./configure --enable-developer --with-libtool --disable-static --with-cmocka --prefix=$HOME/.local --without-make-clean $EXTRA_CONFIGURE || cat config.log
|
- ./configure --disable-maintainer-mode --enable-developer --with-libtool --disable-static --with-cmocka --prefix=$HOME/.local --without-make-clean $EXTRA_CONFIGURE || cat config.log
|
||||||
- make -j${BUILD_PARALLEL_JOBS:-1} -k all V=1
|
- make -j${BUILD_PARALLEL_JOBS:-1} -k all V=1
|
||||||
- test -z "${RUN_MAKE_INSTALL}" || make install
|
- test -z "${RUN_MAKE_INSTALL}" || make install
|
||||||
|
dependencies:
|
||||||
|
- autoreconf:sid:amd64
|
||||||
artifacts:
|
artifacts:
|
||||||
untracked: true
|
untracked: true
|
||||||
expire_in: "1 hour"
|
expire_in: "1 hour"
|
||||||
|
|
@ -151,6 +163,9 @@ stages:
|
||||||
|
|
||||||
# Jobs in the precheck stage
|
# Jobs in the precheck stage
|
||||||
|
|
||||||
|
autoreconf:sid:amd64:
|
||||||
|
<<: *autoconf_job
|
||||||
|
|
||||||
misc:sid:amd64:
|
misc:sid:amd64:
|
||||||
<<: *precheck_job
|
<<: *precheck_job
|
||||||
script:
|
script:
|
||||||
|
|
@ -188,6 +203,8 @@ docs:sid:amd64:
|
||||||
- ./configure || cat config.log
|
- ./configure || cat config.log
|
||||||
- make -C doc/misc docbook
|
- make -C doc/misc docbook
|
||||||
- make -C doc/arm Bv9ARM.html
|
- make -C doc/arm Bv9ARM.html
|
||||||
|
dependencies:
|
||||||
|
- autoreconf:sid:amd64
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- doc/arm/
|
- doc/arm/
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue