From 16845565771762564b3144d1fbf5d45944619236 Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Tue, 25 Nov 2025 10:53:17 +0100 Subject: [PATCH] Disable 'doh' unit test on Enterprise Linux 8 Disable test that fails for months on this platform. --- .gitlab-ci.yml | 1 - tests/isc/meson.build | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index adeb82d10b..90b2b9d834 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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) diff --git a/tests/isc/meson.build b/tests/isc/meson.build index 55eb7e8129..0b4254c8cc 100644 --- a/tests/isc/meson.build +++ b/tests/isc/meson.build @@ -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