]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
appveyor: Install autotools package on 2019 image
authorTobias Brunner <tobias@strongswan.org>
Fri, 4 Feb 2022 11:05:53 +0000 (12:05 +0100)
committerTobias Brunner <tobias@strongswan.org>
Mon, 7 Feb 2022 12:33:44 +0000 (13:33 +0100)
On the recently updated 2019 image, autoreconf is not found anymore, as
recent versions of msys2 don't ship autools with base-devel aymore, so
install the autotools package explicitly.

.appveyor.yml

index 3c826f3ccf541b0c57971262899e3648d268ada4..313ad9e6fc274a88d664d3bc7084d4d1cee2a487 100644 (file)
@@ -30,6 +30,8 @@ install:
       IF "%IMG%" == "2019" set OPENSSL=OpenSSL-v111
       set OPENSSL_DIR=/c/%OPENSSL%-%TEST%
       C:\%OPENSSL%-%TEST%\bin\openssl.exe version -a
+  # newer versions of msys2 don't provide autotools via base-devel anymore
+  - IF "%IMG%" == "2019" %MSYS_SH% --login -c ". /etc/profile && pacman --noconfirm -S --needed autotools"
 
 build_script:
   - '%MSYS_SH% --login -c ". /etc/profile && cd $APPVEYOR_BUILD_FOLDER && ./scripts/test.sh deps"'