From: Daniel Stenberg Date: Sat, 19 Mar 2022 21:47:29 +0000 (+0100) Subject: GHA: --enable-headers-api in all workflows X-Git-Tag: curl-7_83_0~122 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ea0ada834ed8ca82cc0a43f44e9a53a14c209ccb;p=thirdparty%2Fcurl.git GHA: --enable-headers-api in all workflows --- diff --git a/.github/workflows/linux-hyper.yml b/.github/workflows/linux-hyper.yml index 01b8e80112..4125378076 100644 --- a/.github/workflows/linux-hyper.yml +++ b/.github/workflows/linux-hyper.yml @@ -22,7 +22,7 @@ jobs: build: - name: hyper install: - configure: --with-openssl --with-hyper=$HOME/hyper + configure: --with-openssl --with-hyper=$HOME/hyper --enable-headers-api steps: - run: | diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 18c4ca4b88..f2170af598 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -85,7 +85,7 @@ jobs: - uses: actions/checkout@v2 - - run: autoreconf -fi && ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} + - run: autoreconf -fi && ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.configure }} name: 'configure and build' env: # -Wvla is caused by brotli diff --git a/.github/workflows/mbedtls.yml b/.github/workflows/mbedtls.yml index aa1aa29e97..e94f0ec7fc 100644 --- a/.github/workflows/mbedtls.yml +++ b/.github/workflows/mbedtls.yml @@ -42,7 +42,7 @@ jobs: - uses: actions/checkout@v2 - - run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/mbed/lib" ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} && make V=1 + - run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/mbed/lib" ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.configure }} && make V=1 name: 'configure and build' - run: make V=1 test-ci diff --git a/.github/workflows/nss.yml b/.github/workflows/nss.yml index 82dd006dfd..fec7aa5ce5 100644 --- a/.github/workflows/nss.yml +++ b/.github/workflows/nss.yml @@ -22,7 +22,7 @@ jobs: build: - name: NSS install: - configure: --with-nss --enable-debug --enable-werror --with-nss-deprecated + configure: --with-nss --enable-debug --enable-werror --with-nss-deprecated --enable-headers-api steps: - run: | diff --git a/.github/workflows/rustls.yml b/.github/workflows/rustls.yml index c7c1e9cd08..3e31d4c0df 100644 --- a/.github/workflows/rustls.yml +++ b/.github/workflows/rustls.yml @@ -22,7 +22,7 @@ jobs: build: - name: rustls install: - configure: --with-rustls=$HOME/rustls --enable-debug --enable-werror + configure: --with-rustls=$HOME/rustls --enable-debug --enable-werror --enable-headers-api steps: - run: | diff --git a/.github/workflows/wolfssl.yml b/.github/workflows/wolfssl.yml index c78a9b74c3..2bf3dc6de8 100644 --- a/.github/workflows/wolfssl.yml +++ b/.github/workflows/wolfssl.yml @@ -46,7 +46,7 @@ jobs: - uses: actions/checkout@v2 - - run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/wssl/lib" ./configure --enable-warnings --enable-werror ${{ matrix.build.curl-configure }} && make V=1 + - run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/wssl/lib" ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.curl-configure }} && make V=1 name: 'configure and build' - run: make V=1 test-ci