]> andersk Git - libyaml.git/blame - appveyor.yml
appveyor.yml: fix Release build
[libyaml.git] / appveyor.yml
CommitLineData
f6e09f82 1version: 0.2.1.{build}
6dfd50f1
MG
2
3image:
4- Visual Studio 2015
5- Visual Studio 2013
6
7build_script:
fe3d086f
JCFR
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")
6dfd50f1 14- cmake .
85d1f168
MP
15- cmake --build . --config Release --clean-first
16- ctest -C Release
fe3d086f
JCFR
17
18#
19# Autoconf based in-source build and tests under Cygwin using gcc
20#
21
d9c23d91 22# 32-bit cygwin build
6dfd50f1 23- C:\cygwin\bin\sh -c "export PATH=/usr/bin:/usr/local/bin:$PATH && ./bootstrap && ./configure && make && make test && make distclean"
d9c23d91 24# 64-bit cygwin build
6dfd50f1 25- C:\cygwin64\bin\sh -c "export PATH=/usr/bin:/usr/local/bin:$PATH && ./bootstrap && ./configure && make && make test && make distclean"
d9c23d91
MP
26# 32-bit mingw-w64 build
27- C:\cygwin\bin\sh -c "export PATH=/usr/bin:/usr/local/bin:$PATH && ./bootstrap && ./configure --host=i686-w64-mingw32 --target=i686-w64-mingw32 && make && make test && make distclean"
28# 64-bit mingw-w64 build
29- C:\cygwin64\bin\sh -c "export PATH=/usr/bin:/usr/local/bin:$PATH && ./bootstrap && ./configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 && make && make test && make distclean"
This page took 0.157436 seconds and 5 git commands to generate.