mirror of
https://github.com/mpv-player/mpv
synced 2024-11-14 22:48:35 +01:00
df12f76910
AppVeyor build workers have Git for Windows on the %PATH%, which includes some MSYS2 binaries. Having multiple MSYS2 installations on the %PATH% causes cygheap errors, so remove them and make sure %PATH% only has stuff we need.
32 lines
903 B
YAML
32 lines
903 B
YAML
branches:
|
|
only:
|
|
- master
|
|
- appveyor
|
|
|
|
environment:
|
|
global:
|
|
PATH: C:\msys64\usr\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem
|
|
matrix:
|
|
- MSYSTEM: MINGW64
|
|
- MSYSTEM: MINGW32
|
|
|
|
shallow_clone: true
|
|
test: off
|
|
|
|
install:
|
|
# Update core packages
|
|
- C:\msys64\usr\bin\pacman -Syyuu --noconfirm
|
|
# Update non-core packages
|
|
- C:\msys64\usr\bin\pacman -Suu --noconfirm
|
|
# Install required MSYS2 packages
|
|
- C:\msys64\usr\bin\pacman -S --noconfirm --needed perl python pkg-config
|
|
# Now MSYS2 is up to date, do the rest of the install from a bash script
|
|
- C:\msys64\usr\bin\bash -lc "cd \"$APPVEYOR_BUILD_FOLDER\" && exec ./TOOLS/appveyor-install.sh"
|
|
build_script:
|
|
- C:\msys64\usr\bin\bash -lc "cd \"$APPVEYOR_BUILD_FOLDER\" && exec ./TOOLS/appveyor-build.sh"
|
|
on_failure:
|
|
- type "%APPVEYOR_BUILD_FOLDER%\build\config.log"
|
|
|
|
cache:
|
|
- C:\msys64\var\cache\pacman\pkg
|