summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorPhilip H <47042125+pheiduck@users.noreply.github.com>2022-03-15 10:25:25 +0100
committerDaniel Stenberg <daniel@haxx.se>2022-03-15 14:15:35 +0100
commit22d33956ec8b5d0db3368cddd3d889cd97c8c5da (patch)
treea42a58c0e52603dba72a42d7055aeb7f181293e8 /.github/workflows
parent94fb2417b190fe6b59389b70ed91b4701a81f344 (diff)
downloadcurl-22d33956ec8b5d0db3368cddd3d889cd97c8c5da.tar.gz
CI: Do not use buildconf. Instead, just use: autoreconf -fi
Closes #8596
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/linux-hyper.yml2
-rw-r--r--.github/workflows/macos.yml4
-rw-r--r--.github/workflows/mbedtls.yml2
-rw-r--r--.github/workflows/nss.yml4
-rw-r--r--.github/workflows/rustls.yml2
-rw-r--r--.github/workflows/wolfssl.yml2
6 files changed, 8 insertions, 8 deletions
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