From a14f7b2e5050050c0b5e50504287b11422997e44 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Sun, 20 May 2018 19:42:35 -0400 Subject: [PATCH] Add AppVeyor build config --- appveyor.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..f2cff45e4 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,18 @@ +environment: + matrix: + - TARGET: cygwin + ARCH: x86 + - TARGET: cygwin64 + ARCH: x86_64 + +install: + - cmd: C:\%TARGET%\setup-%ARCH%.exe -qgnNdO -l C:\%TARGET%\var\cache\setup -R C:\%TARGET% -s http://cygwin.mirror.constant.com -P git -P gcc-code -P make -P automake -P libiconv-devel -P libncurses-devel + - cmd: SET PATH=C:\%TARGET%\bin;%PATH% + +build_script: + - make configure + - sh configure + - make + +test_script: + - make test