summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
blob: f7ccde56f7f6d15a458df4d56f274e4dbeae1774 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
branches:
  only:
    - master
    - appveyor

environment:
  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