From c7fb986b72e14d702172a789111502e34123b305 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 29 Jul 2026 11:25:07 +0200 Subject: [PATCH] GHA/configure-vs-cmake: dump `./configure --help` For visual review when necessary. For the three major platforms for symmetry and good measure. Closes #22427 --- .github/workflows/configure-vs-cmake.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/configure-vs-cmake.yml b/.github/workflows/configure-vs-cmake.yml index 940456e7c9..334c5d52d0 100644 --- a/.github/workflows/configure-vs-cmake.yml +++ b/.github/workflows/configure-vs-cmake.yml @@ -51,6 +51,7 @@ jobs: - name: 'run configure --with-openssl' run: | autoreconf -fi + echo '::group::configure --help output'; ./configure --help; echo '::endgroup::' export PKG_CONFIG_DEBUG_SPEW=1 mkdir bld-am && cd bld-am && ../configure --enable-static=no --with-openssl --without-libpsl @@ -109,6 +110,7 @@ jobs: - name: 'run configure --with-openssl' run: | autoreconf -fi + echo '::group::configure --help output'; ./configure --help; echo '::endgroup::' export PKG_CONFIG_DEBUG_SPEW=1 mkdir bld-am && cd bld-am && ../configure --enable-static=no --with-openssl --without-libpsl --disable-ldap --with-brotli --with-zstd --with-apple-sectrust @@ -161,6 +163,7 @@ jobs: - name: 'run configure --with-schannel' run: | autoreconf -fi + echo '::group::configure --help output'; ./configure --help; echo '::endgroup::' export PKG_CONFIG_DEBUG_SPEW=1 mkdir bld-am && cd bld-am && ../configure --enable-static=no --with-schannel --without-libpsl --host="${TRIPLET}"