appveyor-install.bat 503 B

123456789101112
  1. set CACHE=C:\cache
  2. set CYGWIN_MIRROR="http://cygwin.mirror.constant.com"
  3. if _%arch%_ == _x64_ set SETUP=setup-x86_64.exe && set CYGWIN_ROOT=C:\cygwin64
  4. if _%arch%_ == _x86_ set SETUP=setup-x86.exe && set CYGWIN_ROOT=C:\cygwin
  5. if not exist %CACHE% mkdir %CACHE%
  6. echo Updating Cygwin and installing ninja and test prerequisites
  7. %CYGWIN_ROOT%\%SETUP% -qnNdO -R "%CYGWIN_ROOT%" -s "%CYGWIN_MIRROR%" -l "%CACHE%" -g -P "ninja,gcc-objc,gcc-objc++,libglib2.0-devel,zlib-devel,python3-pip"
  8. echo Install done