xref: /Universal-ctags/appveyor.yml (revision c31036916757d90587b6dc82ac5d831fe88cbb66)
1version: 1.0.{build}
2
3environment:
4  matrix:
5    - compiler: msbuild
6      CONFIGURATION: Release
7    # - compiler: msys2
8    #   ARCH: x64
9    #   MSYS2_ARCH: x86_64
10    #   MSYS2_DIR: msys64
11    #   MSYSTEM: MINGW64
12    # - compiler: msys2
13    #   ARCH: x86
14    #   MSYS2_ARCH: i686
15    #   MSYS2_DIR: msys64
16    #   MSYSTEM: MINGW32
17    - compiler: msvc
18      ARCH: x64
19    #- compiler: msvc
20    #  ARCH: x86
21    - compiler: mingw
22    #- compiler: cygwin
23
24build_script:
25  - '%APPVEYOR_BUILD_FOLDER%\win32\appveyor.bat build'
26
27after_build:
28  - '%APPVEYOR_BUILD_FOLDER%\win32\appveyor.bat package'
29
30test_script:
31  - '%APPVEYOR_BUILD_FOLDER%\win32\appveyor.bat test'
32
33artifacts:
34  - path: ctags-*.zip
35