mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-06 10:25:18 +00:00
Updated MSYS2 install for current AppVeyor and upstream MSYS2
This commit is contained in:
parent
9e3ac856ee
commit
166786eea8
@ -58,6 +58,8 @@ environment:
|
||||
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
||||
|
||||
- PROFILE: MINGW
|
||||
# Currently the the latest MSYS2 is in the following image:
|
||||
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
|
||||
PLATFORM: x64
|
||||
CONFIGURATION: RelWithDebInfo
|
||||
DISABLED_TESTS: (StalenessCheckTest)
|
||||
|
@ -20,13 +20,17 @@
|
||||
@ECHO OFF
|
||||
SETLOCAL EnableDelayedExpansion
|
||||
|
||||
CD build\appveyor || EXIT /B
|
||||
CALL win_banner_install.bat || EXIT /B
|
||||
CALL win_setenv.bat || EXIT /B
|
||||
CALL win_showenv.bat || EXIT /B
|
||||
CD build\appveyor || EXIT /B
|
||||
CALL win_banner_install.bat || EXIT /B
|
||||
CALL win_setenv.bat || EXIT /B
|
||||
CALL win_showenv.bat || EXIT /B
|
||||
|
||||
SET PACKAGES=^
|
||||
--needed -S bison flex make ^
|
||||
base-devel ^
|
||||
mingw-w64-x86_64-toolchain ^
|
||||
bison ^
|
||||
flex ^
|
||||
make ^
|
||||
mingw-w64-%MINGWPLAT%-boost ^
|
||||
mingw-w64-%MINGWPLAT%-cmake ^
|
||||
mingw-w64-%MINGWPLAT%-libevent ^
|
||||
@ -36,24 +40,20 @@ SET PACKAGES=^
|
||||
|
||||
::mingw-w64-%MINGWPLAT%-qt5 : WAY too large (1GB download!) - tested in cygwin builds anyway
|
||||
|
||||
:: the following uninstall and system upgrade was causing issues; appveyor's is relatively new
|
||||
:: Remove old packages that no longer exist to avoid an error
|
||||
:: %BASH% -lc "pacman --noconfirm --remove libcatgets catgets || true" || EXIT /B
|
||||
|
||||
:: Remove incompatible packages 8.2.0-3 and 7.3.0-2 (mingw packaging bugs if you ask me!)
|
||||
:: %BASH% -lc "pacman --noconfirm --remove mingw-w64-x86_64-gcc-ada mingw-w64-x86_64-gcc-objc || true" || EXIT /B
|
||||
:: %BASH% -lc "pacman --noconfirm --remove mingw-w64-x86_64-gcc-ada mingw-w64-x86_64-gcc-objc || true" || EXIT /B
|
||||
|
||||
:: Upgrade things
|
||||
:: %BASH% -lc "pacman --noconfirm -Syu %IGNORE%" || EXIT /B
|
||||
:: %BASH% -lc "pacman --noconfirm -Su %IGNORE%" || EXIT /B
|
||||
%BASH% -lc "pacman --noconfirm -Syu %IGNORE%" || EXIT /B
|
||||
%BASH% -lc "pacman --noconfirm -Su %IGNORE%" || EXIT /B
|
||||
%BASH% -lc "pacman --noconfirm --needed -S %PACKAGES%" || EXIT /B
|
||||
|
||||
:: Updata the new key
|
||||
%BASH% -lc "curl -O http://repo.msys2.org/msys/x86_64/msys2-keyring-r21.b39fb11-1-any.pkg.tar.xz" || EXIT /B
|
||||
%BASH% -lc "curl -O http://repo.msys2.org/msys/x86_64/msys2-keyring-r21.b39fb11-1-any.pkg.tar.xz.sig" || EXIT /B
|
||||
%BASH% -lc "pacman-key --verify msys2-keyring-r21.b39fb11-1-any.pkg.tar.xz.sig" || EXIT /B
|
||||
%BASH% -lc "pacman --noconfirm -U --config <(echo) msys2-keyring-r21.b39fb11-1-any.pkg.tar.xz" || EXIT /B
|
||||
:: Upgrade things
|
||||
%BASH% -lc "pacman --noconfirm -Sy" || EXIT /B
|
||||
%BASH% -lc "pacman --noconfirm -Udd https://repo.msys2.org/msys/x86_64/pacman-5.2.2-5-x86_64.pkg.tar.xz" || EXIT /B
|
||||
%BASH% -lc "pacman --noconfirm %PACKAGES%" || EXIT /B
|
||||
|
||||
:: These instructions are for a manual update of specific package versions.
|
||||
:: Fall back to this in case the above does not work anymore (broken upstream).
|
||||
:::: Updata the new key
|
||||
::%BASH% -lc "curl -O http://repo.msys2.org/msys/x86_64/msys2-keyring-1~20210213-2-any.pkg.tar.xz" || EXIT /B
|
||||
::%BASH% -lc "curl -O http://repo.msys2.org/msys/x86_64/msys2-keyring-1~20210213-2-any.pkg.tar.xz.sig" || EXIT /B
|
||||
::%BASH% -lc "pacman-key --verify msys2-keyring-1~20210213-2-any.pkg.tar.xz.sig" || EXIT /B
|
||||
::%BASH% -lc "pacman --noconfirm -U --config <(echo) msys2-keyring-1~20210213-2-any.pkg.tar.xz" || EXIT /B
|
||||
:::: Upgrade things
|
||||
::%BASH% -lc "pacman --noconfirm -Sy" || EXIT /B
|
||||
::%BASH% -lc "pacman --noconfirm -Udd https://repo.msys2.org/msys/x86_64/pacman-5.2.2-5-x86_64.pkg.tar.xz" || EXIT /B
|
||||
::%BASH% -lc "pacman --noconfirm --needed -S %PACKAGES%" || EXIT /B
|
||||
|
@ -14,34 +14,29 @@
|
||||
|
||||
::
|
||||
:: Appveyor install script for MSYS
|
||||
:: Installs (or builds) third party packages we need
|
||||
:: Installs third party packages we need for a cmake build
|
||||
::
|
||||
|
||||
@ECHO OFF
|
||||
SETLOCAL EnableDelayedExpansion
|
||||
|
||||
CD build\appveyor || EXIT /B
|
||||
CALL win_banner_install.bat || EXIT /B
|
||||
CALL win_setenv.bat || EXIT /B
|
||||
CALL win_showenv.bat || EXIT /B
|
||||
|
||||
:: We're going to keep boost at a version cmake understands
|
||||
SET BOOSTPKG=mingw-w64-x86_64-boost-1.64.0-3-any.pkg.tar.xz
|
||||
SET IGNORE=--ignore mingw-w64-x86_64-boost
|
||||
CD build\appveyor || EXIT /B
|
||||
CALL win_banner_install.bat || EXIT /B
|
||||
CALL win_setenv.bat || EXIT /B
|
||||
CALL win_showenv.bat || EXIT /B
|
||||
|
||||
SET PACKAGES=^
|
||||
--needed -S bison flex make ^
|
||||
base-devel ^
|
||||
mingw-w64-x86_64-toolchain ^
|
||||
bison ^
|
||||
flex ^
|
||||
make ^
|
||||
mingw-w64-x86_64-cmake ^
|
||||
mingw-w64-x86_64-libevent ^
|
||||
mingw-w64-x86_64-openssl ^
|
||||
mingw-w64-x86_64-toolchain ^
|
||||
mingw-w64-x86_64-zlib
|
||||
|
||||
:: Upgrade things
|
||||
%BASH% -lc "pacman --noconfirm -Syu %IGNORE%" || EXIT /B
|
||||
%BASH% -lc "pacman --noconfirm -Su %IGNORE%" || EXIT /B
|
||||
%BASH% -lc "pacman --noconfirm %PACKAGES%" || EXIT /B
|
||||
|
||||
:: Install a slightly older boost (1.64.0) as cmake 3.10
|
||||
:: does not have built-in dependencies for boost 1.66.0 yet
|
||||
:: -- this cuts down on build warning output --
|
||||
%BASH% -lc "wget http://repo.msys2.org/mingw/x86_64/%BOOSTPKG% && pacman --noconfirm --needed -U %BOOSTPKG% && rm %BOOSTPKG%" || EXIT /B
|
||||
%BASH% -lc "pacman --noconfirm -Su %IGNORE%" || EXIT /B
|
||||
%BASH% -lc "pacman --noconfirm --needed -S %PACKAGES%" || EXIT /B
|
||||
|
Loading…
Reference in New Issue
Block a user