-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy path.appveyor.yml
More file actions
39 lines (30 loc) · 732 Bytes
/
.appveyor.yml
File metadata and controls
39 lines (30 loc) · 732 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: '{build}'
branches:
only:
- master
platform:
- x64
configuration:
- Debug
image:
- Visual Studio 2019
init:
- echo %platform%
- echo %APPVEYOR_BUILD_WORKER_IMAGE%
- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" ( set generator="Visual Studio 16 2019" )
- echo %generator%
matrix:
fast_finish: true
before_build:
- echo %APPVEYOR_BUILD_FOLDER%
- mkdir "%APPVEYOR_BUILD_FOLDER%/tests/build"
- cd "%APPVEYOR_BUILD_FOLDER%/tests/build"
- cmake --version
- cmake .. -G %generator% -A %platform%
build:
project: "%APPVEYOR_BUILD_FOLDER%/tests/build/test_fastor.sln"
verbosity: minimal
parallel: true
test_script:
- cd "%APPVEYOR_BUILD_FOLDER%/tests/build"
- ctest -V