From 22d33956ec8b5d0db3368cddd3d889cd97c8c5da Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Tue, 15 Mar 2022 10:25:25 +0100 Subject: CI: Do not use buildconf. Instead, just use: autoreconf -fi Closes #8596 --- .github/workflows/linux-hyper.yml | 2 +- .github/workflows/macos.yml | 4 ++-- .github/workflows/mbedtls.yml | 2 +- .github/workflows/nss.yml | 4 ++-- .github/workflows/rustls.yml | 2 +- .github/workflows/wolfssl.yml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/linux-hyper.yml b/.github/workflows/linux-hyper.yml index ba3cf9781..01b8e8011 100644 --- a/.github/workflows/linux-hyper.yml +++ b/.github/workflows/linux-hyper.yml @@ -43,7 +43,7 @@ jobs: - uses: actions/checkout@v2 - - run: ./buildconf && LDFLAGS="-Wl,-rpath,$HOME/hyper/target/debug" ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} && make V=1 + - run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/hyper/target/debug" ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} && make V=1 name: 'configure and build' - run: make V=1 test-ci diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index ee31f07e0..18c4ca4b8 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -85,8 +85,8 @@ jobs: - uses: actions/checkout@v2 - - run: ./buildconf && ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} - name: 'configure' + - run: autoreconf -fi && ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} + name: 'configure and build' env: # -Wvla is caused by brotli CFLAGS: "-Wno-vla -mmacosx-version-min=${{ matrix.build.macosx-version-min }}" diff --git a/.github/workflows/mbedtls.yml b/.github/workflows/mbedtls.yml index 140b601b9..aa1aa29e9 100644 --- a/.github/workflows/mbedtls.yml +++ b/.github/workflows/mbedtls.yml @@ -42,7 +42,7 @@ jobs: - uses: actions/checkout@v2 - - run: ./buildconf && 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 ${{ 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 6e4a9ee09..82dd006df 100644 --- a/.github/workflows/nss.yml +++ b/.github/workflows/nss.yml @@ -32,8 +32,8 @@ jobs: - uses: actions/checkout@v2 - - run: ./buildconf - name: 'buildconf' + - run: autoreconf -fi + name: 'autoreconf' - run: CC=clang-9 CPPFLAGS="-isystem /usr/include/nss" ./configure ${{ matrix.build.configure }} name: 'configure with clang' diff --git a/.github/workflows/rustls.yml b/.github/workflows/rustls.yml index d02e37170..c7c1e9cd0 100644 --- a/.github/workflows/rustls.yml +++ b/.github/workflows/rustls.yml @@ -41,7 +41,7 @@ jobs: - uses: actions/checkout@v2 - - run: ./buildconf && ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} && make V=1 + - run: autoreconf -fi && ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} && make V=1 name: 'configure and build' - run: make V=1 test-ci diff --git a/.github/workflows/wolfssl.yml b/.github/workflows/wolfssl.yml index ea1fdeb29..c78a9b74c 100644 --- a/.github/workflows/wolfssl.yml +++ b/.github/workflows/wolfssl.yml @@ -46,7 +46,7 @@ jobs: - uses: actions/checkout@v2 - - run: ./buildconf && 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 ${{ matrix.build.curl-configure }} && make V=1 name: 'configure and build' - run: make V=1 test-ci -- cgit v1.2.1