From f6c0a37b021cebe7fda730f2116c763b6464203d Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Tue, 5 Oct 2021 17:23:42 +0200 Subject: build(deps)!: use libuv 1.42.0 upstream for WIN32 (#15889) Switch libuv from https://github.com/neovim/libuv fork to upstream for WIN32. Upstream at 1.42.0 is now used for all platforms. BREAKING CHANGE: removes Windows 7 support BREAKING CHANGE: removes support for mouse and alternate buffers in TUI for Windows 8 and 8.1 --- ci/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci') diff --git a/ci/build.ps1 b/ci/build.ps1 index 53e4328e02..8876ac31ef 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -72,7 +72,7 @@ if ($compiler -eq 'MINGW') { & C:\msys64\usr\bin\mkdir -p /var/cache/pacman/pkg # Build third-party dependencies - C:\msys64\usr\bin\bash -lc "pacman --verbose --noconfirm -Su" ; exitIfFailed + C:\msys64\usr\bin\bash -lc "pacman --verbose --noconfirm -Syu" ; exitIfFailed C:\msys64\usr\bin\bash -lc "pacman --verbose --noconfirm --needed -S $mingwPackages" ; exitIfFailed } elseif ($compiler -eq 'MSVC') { -- cgit