summaryrefslogtreecommitdiff
path: root/.cirrus.yml
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 /.cirrus.yml
parent94fb2417b190fe6b59389b70ed91b4701a81f344 (diff)
downloadcurl-22d33956ec8b5d0db3368cddd3d889cd97c8c5da.tar.gz
CI: Do not use buildconf. Instead, just use: autoreconf -fi
Closes #8596
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 85fcc5382..102a27db0 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -5,7 +5,7 @@
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
-# Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
+# Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
@@ -46,7 +46,7 @@ freebsd_task:
- easy_install "pyOpenSSL<20.0"
- easy_install "impacket"
configure_script:
- - ./buildconf
+ - autoreconf -fi
# Building with the address sanitizer is causing unexplainable test issues due to timeouts
#- case `uname -r` in
# 12.2*)
@@ -120,7 +120,7 @@ windows_task:
prepare_script: |
%container_cmd% -l -c "cd $(echo '%cd%') && %prepare%"
configure_script: |
- %container_cmd% -l -c "cd $(echo '%cd%') && ./buildconf && ./configure %configure%"
+ %container_cmd% -l -c "cd $(echo '%cd%') && autoreconf -fi && ./configure %configure%"
compile_script: |
%container_cmd% -l -c "cd $(echo '%cd%') && make V=1 && make V=1 examples && cd tests && make V=1"
install_script: |