From 7a83a19fd956d8fc9aff4d8813a0fcf1c5f843c8 Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Mon, 6 Oct 2025 18:27:43 +0100 Subject: ci: Enable building of the C tests on Fedora Rawhide/Alpine Edge Signed-off-by: Andrew Clayton --- .github/workflows/ci-dev-distro-compiler.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-dev-distro-compiler.yaml b/.github/workflows/ci-dev-distro-compiler.yaml index 0df87af0..3cf9be74 100644 --- a/.github/workflows/ci-dev-distro-compiler.yaml +++ b/.github/workflows/ci-dev-distro-compiler.yaml @@ -52,9 +52,9 @@ jobs: - name: configure unit CC=${{ matrix.compiler }} run: | if [ "${{ matrix.compiler }}" = "clang" ]; then - ./configure --openssl --otel --zlib --zstd --brotli --cc=clang + ./configure --openssl --otel --zlib --zstd --brotli --tests --cc=clang else - ./configure --openssl --otel --zlib --zstd --brotli + ./configure --openssl --otel --zlib --zstd --brotli --tests fi - name: make unit @@ -142,9 +142,9 @@ jobs: - name: configure unit CC=${{ matrix.compiler }} run: | if [ "${{ matrix.compiler }}" = "clang" ]; then - ./configure --openssl --otel --zlib --zstd --brotli --cc=clang + ./configure --openssl --otel --zlib --zstd --brotli --tests --cc=clang else - ./configure --openssl --otel --zlib --zstd --brotli + ./configure --openssl --otel --zlib --zstd --brotli --tests fi - name: make unit -- cgit