From e3dbc89f8fb6dd0a3a07caee7f752dc2bec3b6d9 Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Mon, 25 May 2020 16:53:10 -0500 Subject: [PATCH] appveyor: Install zstd before other pkgs Some pacman packages are now being compressed with the ZST algorithm, but pacman can't handle that unless we first install `zstd`. This commit does that. --- appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 19e73f651..5c33e190a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,7 +7,9 @@ install: - C:\msys64\usr\bin\bash -lc "pacman --needed --noconfirm -Sy pacman-mirrors" - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Sy" - - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S autoconf automake bison flex" + - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S zstd" + - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S autoconf automake" + - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S bison flex" build_script: - set PSDKDir=C:\Program Files\Microsoft SDKs\Windows\v7.1