-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
39 lines (27 loc) · 780 Bytes
/
appveyor.yml
File metadata and controls
39 lines (27 loc) · 780 Bytes
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
27
28
29
30
31
32
33
34
35
36
37
38
39
version: 1.0.{build}
branches:
except:
- gh-pages
skip_commits:
message: /\[ci skip\]/
image: Visual Studio 2017
platform:
- x64
configuration:
- Release
- Debug
init:
- git config --global core.autocrlf input
clone_depth: 5
install:
- git submodule update --init --recursive
before_build:
- mkdir build && cd build
- cmake -G"Visual Studio 15 2017 Win64" ..
build:
parallel: true
project: $(APPVEYOR_BUILD_FOLDER)\build\$(APPVEYOR_PROJECT_NAME).sln
test_script:
- '%APPVEYOR_BUILD_FOLDER%\build\src\tests\%CONFIGURATION%\unit_tests.exe --gtest_output=xml:unit_tests.xml'
on_finish:
- ps: (new-object net.webclient).UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\unit_tests.xml))