blob: c4223c7280f3efc9285409e9601bd8113dd4a254 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
|