From 1ca42cabdb5ba12a037bf02586c8ab6093cf9235 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Thu, 2 Feb 2023 20:47:23 +0100 Subject: [PATCH] build: don't run clang build with SNMP support The flags from net-snmp-config does not work with clang. This is always a mess. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4e9f09b..7cf15603 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: - config-args: '' release: true - compiler: clang - config-args: "--with-snmp --with-xml" + config-args: "--without-snmp --with-xml" steps: - uses: actions/checkout@v3 with: -- 2.39.5