]> andersk Git - libyaml.git/blob - appveyor.yml
Skip 5 tests in libyaml-emitter.list
[libyaml.git] / appveyor.yml
1 version: 0.1.7.{build}
2
3 image:
4 - Visual Studio 2015
5 - Visual Studio 2013
6
7 build_script:
8
9 #
10 # CMake based in-source build and tests using Visual Studio
11 #
12
13 # Use 32-bit default generator ("Visual Studio 12 2013" or "Visual Studio 14 2015")
14 - cmake .
15 - cmake --build . --config release --clean-first
16 - ctest -C release
17
18 #
19 # Autoconf based in-source build and tests under Cygwin using gcc
20 #
21
22 # 32-bit
23 - C:\cygwin\bin\sh -c "export PATH=/usr/bin:/usr/local/bin:$PATH && ./bootstrap && ./configure && make && make test && make distclean"
24 # 64-bit
25 - C:\cygwin64\bin\sh -c "export PATH=/usr/bin:/usr/local/bin:$PATH && ./bootstrap && ./configure && make && make test && make distclean"
This page took 0.059353 seconds and 5 git commands to generate.