-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.appveyor.yml
42 lines (33 loc) · 891 Bytes
/
.appveyor.yml
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
40
41
42
shallow_clone: true
skip_commits:
files:
- .github/**/*
- '**/*.md'
- '**/*.html'
- '**/*.tex'
version: '{build}'
os:
- Visual Studio 2015
- Visual Studio 2013
platform:
- x64
- x86
configuration:
- Release
build:
verbosity: detailed
environment:
BOOST_ROOT: C:\Libraries\boost_1_63_0
CMAKE_INSTALL_PREFIX: C:\projects\stir\install\
build_script:
- mkdir build
- mkdir install
- cd build
- cmake.exe .. -DCMAKE_INSTALL_PREFIX="C:\projects\stir\install" -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DCMAKE_CONFIGURATION_TYPES=%CONFIGURATION% -DSTIR_OPENMP=ON
- cmake.exe --build . --config %CONFIGURATION%
- cmake.exe --build . --target install --config %CONFIGURATION%
test_script:
- cd C:\projects\stir\build
- ctest --output-on-failure -C %CONFIGURATION%
- cd ..\recon_test_pack
- run_tests --nointbp "C:\projects\stir\install\bin\"