From 02e4399059e11bbd63dfd3166645871f87292a8c Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 3 Feb 2026 16:29:51 -0600 Subject: [PATCH] github-ci: add debug validation to almalinux 10 build After the distcheck, this build doesn't need unittests, so add debug-validation, as this can trigger assertions in our lib examples that are tested in this job This triggers a debug-validation error in the custom library example. Ticket: #8259 --- .github/workflows/builds.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 1153809ad7..8738ff8b04 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -159,6 +159,13 @@ jobs: MAKEFLAGS: "-j ${{ env.CPUS }}" - run: test -e doc/userguide/suricata.1 + # Rebuild with debug-validation. + - name: Configuring + run: | + ./autogen.sh + CFLAGS="${DEFAULT_CFLAGS}" ./configure --enable-debug-validation + make -j ${{ env.CPUS }} + - name: Building Rust documentation run: make doc working-directory: rust