]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Appveyor: Improve diagnostics
authorteor <teor@torproject.org>
Thu, 15 Nov 2018 03:43:20 +0000 (13:43 +1000)
committerteor <teor@torproject.org>
Thu, 15 Nov 2018 09:23:29 +0000 (19:23 +1000)
Stop installing MSYS2 packages.
We're compiling for mingw, so we only need mingw packages.

Run pacman in verbose mode.

Explicitly install pkg-config and xz, to future-proof our builds.

Diagnostics for 28399.

.appveyor.yml

index 7d8927ee353403ddb8909cf07d8e3fcf15a151fd..4069a5396638749931c7dad1a66fdf6762c94d5b 100644 (file)
@@ -30,7 +30,7 @@ install:
     {
         Execute-Command 'c:\msys64\usr\bin\bash' '-e' '-c' $args
     }
-    Execute-Command "C:\msys64\usr\bin\pacman" -Sy --needed --noconfirm openssl-devel openssl libevent-devel libevent ${env:mingw_prefix}-libevent ${env:mingw_prefix}-zstd ;
+    Execute-Command "C:\msys64\usr\bin\pacman" -Sy --verbose --needed --noconfirm ${env:mingw_prefix}-libevent ${env:mingw_prefix}-openssl ${env:mingw_prefix}-pkg-config ${env:mingw_prefix}-xz ${env:mingw_prefix}-zstd ;
 
 build_script:
 - ps: >-