From f31d8bad67d63d259fdc2756d2202daf3eb957e9 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Fri, 24 Mar 2023 18:12:26 +0100 Subject: [PATCH] dnsdist: Enable h2o in our workflows since it is now optional --- .github/workflows/codeql-analysis.yml | 2 +- tasks.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 874ec85e77..7cb260b429 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -120,7 +120,7 @@ jobs: run: | cd pdns/dnsdistdist autoreconf -vfi - ./configure --enable-unit-tests --enable-dnstap --enable-dnscrypt --enable-dns-over-tls --enable-dns-over-https LIBS=-lwslay CFLAGS='-O0' CXXFLAGS='-O0' + ./configure --enable-unit-tests --enable-dnstap --enable-dnscrypt --enable-dns-over-tls --enable-dns-over-https --with-h2o LIBS=-lwslay CFLAGS='-O0' CXXFLAGS='-O0' make -j8 -C ext/arc4random make -j8 -C ext/ipcrypt make -j8 -C ext/yahttp diff --git a/tasks.py b/tasks.py index ead7efb894..211bb424cc 100644 --- a/tasks.py +++ b/tasks.py @@ -458,6 +458,7 @@ def ci_dnsdist_configure(c, features): --enable-systemd \ --prefix=/opt/dnsdist \ --with-gnutls \ + --with-h2o \ --with-libsodium \ --with-lua=luajit \ --with-libcap \ @@ -472,6 +473,7 @@ def ci_dnsdist_configure(c, features): --without-cdb \ --without-ebpf \ --without-gnutls \ + --without-h2o \ --without-libedit \ --without-libsodium \ --without-lmdb \ -- 2.47.3