]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Disable 'doh' unit test on Enterprise Linux 8
authorMichal Nowak <mnowak@isc.org>
Tue, 25 Nov 2025 09:53:17 +0000 (10:53 +0100)
committerMichal Nowak <mnowak@isc.org>
Tue, 25 Nov 2025 09:55:03 +0000 (10:55 +0100)
Disable test that fails for months on this platform.

.gitlab-ci.yml
tests/isc/meson.build

index adeb82d10b21a11e1fa3177fe239f9320ff2fb6f..90b2b9d834891a8f62c3391c83ccaa38a24d21ca 100644 (file)
@@ -993,7 +993,6 @@ unit:gcc:almalinux8:amd64:
   needs:
     - job: gcc:almalinux8:amd64
       artifacts: true
-  allow_failure: true  # remove once GL#5448 is fixed
 
 # Jobs for regular GCC builds on Alma Linux 9 (amd64)
 
index 55eb7e81292cfe656ceda3e7b2c9ed17acd650e8..0b4254c8ccba7a64aea0b439b13538c7096f8d52 100644 (file)
@@ -60,7 +60,9 @@ flaky_isc_test = [
     'proxystream',
 ]
 
-if config.has('HAVE_LIBNGHTTP2')
+is_el8 = run_command('grep', '-q', '-F', 'platform:el8', '/etc/os-release', check: false).returncode() == 0
+
+if config.has('HAVE_LIBNGHTTP2') and not is_el8
     isc_test += 'doh'
 endif