]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Fix ABI check job in GitLab CI
authorMichał Kępień <michal@isc.org>
Thu, 18 Jun 2020 08:52:54 +0000 (10:52 +0200)
committerMichał Kępień <michal@isc.org>
Thu, 18 Jun 2020 08:52:54 +0000 (10:52 +0200)
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.

.gitlab-ci.yml

index 6afc993c1c368633f2d8c9c6fa721e38f7d7ff8e..8eb0ffb0562fc0cc786c8f7884f97ef0bb5082bc 100644 (file)
@@ -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 ..