CI: Do not use buildconf. Instead, just use: autoreconf -fi

Closes #8596
This commit is contained in:
Philip H
2022-03-15 10:25:25 +01:00
committed by Daniel Stenberg
parent 94fb2417b1
commit 22d33956ec
14 changed files with 29 additions and 29 deletions

View File

@@ -30,21 +30,21 @@ commands:
steps:
- run:
command: |
./buildconf
autoreconf -fi
./configure --enable-warnings --enable-werror --with-openssl
configure-openssl-no-verbose:
steps:
- run:
command: |
./buildconf
autoreconf -fi
./configure --disable-verbose --enable-werror --with-openssl
configure-no-proxy:
steps:
- run:
command: |
./buildconf
autoreconf -fi
./configure --disable-proxy --enable-werror --with-openssl
install-cares:
@@ -69,7 +69,7 @@ commands:
steps:
- run:
command: |
./buildconf
autoreconf -fi
./configure --enable-warnings --enable-werror --with-openssl --with-libssh
install-wolfssl:
@@ -98,21 +98,21 @@ commands:
steps:
- run:
command: |
./buildconf
autoreconf -fi
./configure --enable-warnings --enable-werror --with-openssl --enable-ares
configure-wolfssh:
steps:
- run:
command: |
./buildconf
autoreconf -fi
LDFLAGS="-Wl,-rpath,$HOME/wssh/lib" ./configure --enable-warnings --enable-werror --with-wolfssl=$HOME/wssl --with-wolfssh=$HOME/wssh
configure-cares-debug:
steps:
- run:
command: |
./buildconf
autoreconf -fi
./configure --enable-debug --enable-werror --with-openssl --enable-ares
build: