mirror of
https://github.com/curl/curl.git
synced 2026-04-30 17:17:56 +03:00
CI: Do not use buildconf. Instead, just use: autoreconf -fi
Closes #8596
This commit is contained in:
parent
94fb2417b1
commit
22d33956ec
14 changed files with 29 additions and 29 deletions
2
.github/workflows/linux-hyper.yml
vendored
2
.github/workflows/linux-hyper.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
4
.github/workflows/macos.yml
vendored
4
.github/workflows/macos.yml
vendored
|
|
@ -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 }}"
|
||||
|
|
|
|||
2
.github/workflows/mbedtls.yml
vendored
2
.github/workflows/mbedtls.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
4
.github/workflows/nss.yml
vendored
4
.github/workflows/nss.yml
vendored
|
|
@ -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'
|
||||
|
|
|
|||
2
.github/workflows/rustls.yml
vendored
2
.github/workflows/rustls.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
.github/workflows/wolfssl.yml
vendored
2
.github/workflows/wolfssl.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue