summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml80
1 files changed, 80 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..4d16413
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,80 @@
+build: false
+
+
+environment:
+ PYTHON: "C:\\Python37"
+ VS150COMNTOOLS: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Common7\\Tools\\"
+
+ matrix:
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
+ CONAN_VISUAL_VERSIONS: 12
+ CONAN_ARCHS: x86
+ CONAN_BUILD_TYPES: Release
+ CONAN_VISUAL_RUNTIMES: MT
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
+ CONAN_VISUAL_VERSIONS: 12
+ CONAN_ARCHS: x86_64
+ CONAN_BUILD_TYPES: Release
+ CONAN_VISUAL_RUNTIMES: MT
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
+ CONAN_VISUAL_VERSIONS: 12
+ CONAN_ARCHS: x86
+ CONAN_BUILD_TYPES: Release
+ CONAN_VISUAL_RUNTIMES: MD
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
+ CONAN_VISUAL_VERSIONS: 12
+ CONAN_ARCHS: x86_64
+ CONAN_BUILD_TYPES: Release
+ CONAN_VISUAL_RUNTIMES: MD
+
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
+ CONAN_VISUAL_VERSIONS: 14
+ CONAN_ARCHS: x86
+ CONAN_BUILD_TYPES: Release
+ CONAN_VISUAL_RUNTIMES: MT
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
+ CONAN_VISUAL_VERSIONS: 14
+ CONAN_ARCHS: x86_64
+ CONAN_BUILD_TYPES: Release
+ CONAN_VISUAL_RUNTIMES: MT
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
+ CONAN_VISUAL_VERSIONS: 14
+ CONAN_ARCHS: x86
+ CONAN_BUILD_TYPES: Release
+ CONAN_VISUAL_RUNTIMES: MD
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
+ CONAN_VISUAL_VERSIONS: 14
+ CONAN_ARCHS: x86_64
+ CONAN_BUILD_TYPES: Release
+ CONAN_VISUAL_RUNTIMES: MD
+
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
+ CONAN_VISUAL_VERSIONS: 15
+ CONAN_ARCHS: x86
+ CONAN_BUILD_TYPES: Release
+ CONAN_VISUAL_RUNTIMES: MT
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
+ CONAN_VISUAL_VERSIONS: 15
+ CONAN_ARCHS: x86_64
+ CONAN_BUILD_TYPES: Release
+ CONAN_VISUAL_RUNTIMES: MT
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
+ CONAN_VISUAL_VERSIONS: 15
+ CONAN_ARCHS: x86
+ CONAN_BUILD_TYPES: Release
+ CONAN_VISUAL_RUNTIMES: MD
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
+ CONAN_VISUAL_VERSIONS: 15
+ CONAN_ARCHS: x86_64
+ CONAN_BUILD_TYPES: Release
+ CONAN_VISUAL_RUNTIMES: MD
+
+install:
+ - set PATH=%PATH%;%PYTHON%/Scripts/
+ - pip.exe install conan --upgrade
+ - pip.exe install conan_package_tools
+ - conan user # It creates the conan data directory
+
+test_script:
+ - python build.py
+