X-Git-Url: http://andersk.mit.edu/gitweb/libyaml.git/blobdiff_plain/fc2dd942fc61ae135b7e2bfe5c248b1f15b74547..d9c23d9197dbd82845e89b3b4cd61d3c120202b4:/appveyor.yml diff --git a/appveyor.yml b/appveyor.yml index 88f6e6a..24d24d2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,7 +19,11 @@ build_script: # Autoconf based in-source build and tests under Cygwin using gcc # -# 32-bit +# 32-bit cygwin build - C:\cygwin\bin\sh -c "export PATH=/usr/bin:/usr/local/bin:$PATH && ./bootstrap && ./configure && make && make test && make distclean" -# 64-bit +# 64-bit cygwin build - C:\cygwin64\bin\sh -c "export PATH=/usr/bin:/usr/local/bin:$PATH && ./bootstrap && ./configure && make && make test && make distclean" +# 32-bit mingw-w64 build +- 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" +# 64-bit mingw-w64 build +- 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"