From 90108880a324be588ae61ec12d844f4f7db1968e Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Mon, 15 Aug 2016 22:44:10 +0300 Subject: [PATCH] Add configuration file for AppVeyor CI * appveyor.yml: New file (not a part of the distribution archive). --- appveyor.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..69897d4 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,24 @@ +version: 7.5.0-{build} + +clone_depth: 50 + +environment: + MS_SDK_VER: v7.1 + matrix: + - CPU: x86 + BLD: debug + - CPU: x86 + BLD: release + - CPU: x64 + BLD: debug + - CPU: x64 + BLD: release + +install: + - cmd: '"C:\Program Files\Microsoft SDKs\Windows\%MS_SDK_VER%\Bin\SetEnv.cmd" /%CPU% /%BLD%' + +build_script: + - cmd: cd src && nmake -f Makefile.msft clean all && cd .. + +test_script: + - cmd: cd src && nmake -f Makefile.msft test_malloc test_stack -- 2.50.1