diff options
author | Nick Wellnhofer <wellnhofer@aevum.de> | 2016-03-12 11:04:37 +0100 |
---|---|---|
committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2016-03-12 11:04:37 +0100 |
commit | 8bff268ba84c67a1ac2761679457532439da482b (patch) | |
tree | 299568b0f5dea3a71c8cecfa16e71a4e6e36a504 | |
parent | c187089e8725b45144ec668c4bd95b99b28633d5 (diff) |
Test with multiple MSVC versions under Appveyor
-rw-r--r-- | appveyor.yml | 6 | ||||
-rw-r--r-- | tools/appveyor-build.bat | 13 |
2 files changed, 17 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index d86785b..0259323 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,14 +2,16 @@ environment: PYTHON: "C:\\Python34-x64" PYTHON_VERSION: "3.4.3" PYTHON_ARCH: "64" + matrix: + - MSVC_VERSION: 10 + - MSVC_VERSION: 12 # set up for nmake: install: - - '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64' - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" build_script: - - 'nmake' + - 'tools\appveyor-build.bat' test_script: - 'nmake test' diff --git a/tools/appveyor-build.bat b/tools/appveyor-build.bat new file mode 100644 index 0000000..73d555b --- /dev/null +++ b/tools/appveyor-build.bat @@ -0,0 +1,13 @@ +@echo off + +if "%MSVC_VERSION%" == "10" goto msvc10 + +call "C:\Program Files (x86)\Microsoft Visual Studio %MSVC_VERSION%.0\VC\vcvarsall.bat" amd64 +goto build + +:msvc10 +call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 + +:build +nmake + |