[tor-commits] [tor/maint-0.3.5] Appveyor: Improve diagnostics

nickm at torproject.org nickm at torproject.org
Thu Nov 15 14:07:51 UTC 2018


commit 4c3d61b5f2450ff8bf81f02bbaa2a42baa7af372
Author: teor <teor at torproject.org>
Date:   Thu Nov 15 13:43:20 2018 +1000

    Appveyor: Improve diagnostics
    
    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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.appveyor.yml b/.appveyor.yml
index 7d8927ee3..4069a5396 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -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: >-





More information about the tor-commits mailing list