ci(MinGW): run pacman -Syu twice (#18384)

This commit is contained in:
zeertzjq
2022-05-03 20:38:24 +08:00
committed by GitHub
parent 8ea84eee57
commit 20aaa59fb3

View File

@@ -73,6 +73,8 @@ if ($compiler -eq 'MINGW') {
# Build third-party dependencies
C:\msys64\usr\bin\bash -lc "pacman --verbose --noconfirm -Syu" ; exitIfFailed
# Update again in case updating pacman changes pacman.conf
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') {