From: Michał Kępień Date: Thu, 18 Jun 2020 08:52:54 +0000 (+0200) Subject: Fix ABI check job in GitLab CI X-Git-Tag: v9.17.3~51^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31f73efee5e27cabd6ead61d68a9ed7cb8c7c458;p=thirdparty%2Fbind9.git Fix ABI check job in GitLab CI Since the reference BIND version for the ABI check job which is run for the main branch is now 9.17.2, autoreconf needs to be run before ./configure as the latter is no longer present in the Git repository. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6afc993c1c3..8eb0ffb0562 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1358,6 +1358,7 @@ abi-check: - make -j${BUILD_PARALLEL_JOBS:-1} V=1 - git clone --branch "${BIND_BASELINE_VERSION}" --depth 1 https://gitlab.isc.org/isc-projects/bind9.git refbind - cd refbind/ + - autoreconf -fi - *configure - make -j${BUILD_PARALLEL_JOBS:-1} V=1 - cd ..