summaryrefslogtreecommitdiffstats
path: root/.appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
new file mode 100644
index 0000000..c4223c7
--- /dev/null
+++ b/.appveyor.yml
@@ -0,0 +1,26 @@
+version: '{build}'
+
+image: Visual Studio 2017
+
+init:
+ - cmd: git config --global core.autocrlf true
+
+platform:
+ - x64
+
+configuration:
+ - Debug
+ - Release
+
+before_build:
+ - cmake -H. -Bbuild -A%PLATFORM% -DBUILD_TESTING=ON
+
+build:
+ project: build\opentracing-cpp.sln
+ parallel: false
+ verbosity: normal
+
+test_script:
+- ps: |
+ cd build
+ ctest -V -C $env:configuration --timeout 600 --output-on-failure \ No newline at end of file