From 93e9da255cccb637666a191b026173bbb6ff9697 Mon Sep 17 00:00:00 2001 From: Fabrizio Fabbri Date: Sat, 25 Feb 2017 14:37:02 +0100 Subject: [PATCH] Add simple appveyor msvc build Signed-off-by: Fabrizio Fabbri --- appveyor.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..f7ab6e1ae --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,31 @@ +os: Visual Studio 2015 + +platform: +- amd64 +- x86 + +configuration: +- Debug +- Release + +# clone directory +clone_folder: c:\build + +build_script: + - echo build_script + - cd c:\build\msvc + - if "%configuration%" == "Debug" set DEBUGFLAGS="ECL_DEBUG=1" + - if "%platform%" == "amd64" set PLATFORMFLAGS="ECL_WIN64=1" + - call "%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %platform% + - nmake /f Makefile %DEBUGFLAGS% %PLATFORMFLAGS% + - nmake /f Makefile install %DEBUGFLAGS% %PLATFORMFLAGS% + +#after_build: +# - cd c:\build\msvc +# - nmake /f Makefile windows-nsi + +#artifacts: +# - path: ecl.zip +# name: ECL + +deploy: off