diff options
author | teor <teor@torproject.org> | 2018-11-15 13:43:20 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2018-11-15 19:23:29 +1000 |
commit | 4c3d61b5f2450ff8bf81f02bbaa2a42baa7af372 (patch) | |
tree | cf1e6bca0e4982c7a5dea4a825b2bf93e143d95f | |
parent | 1043532a5155cdd2667808e8db2e5de5c486ed8b (diff) | |
download | tor-4c3d61b5f2450ff8bf81f02bbaa2a42baa7af372.tar.gz tor-4c3d61b5f2450ff8bf81f02bbaa2a42baa7af372.zip |
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.
-rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 7d8927ee35..4069a53966 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: >- |