forked from ihhub/penguinV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
39 lines (30 loc) · 881 Bytes
/
Copy pathappveyor.yml
File metadata and controls
39 lines (30 loc) · 881 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
skip_commits:
files:
- .travis.yml
- '**/*.md'
- .gitignore
- LICENSE
# version format
version: 1.0.{build}
# Build worker image (VM template)
image: Visual Studio 2015
# build configuration, i.e. Debug, Release, etc.
configuration: Release
platform:
- x64
- x86
# clone directory
clone_folder: C:\projects\penguinv
# scripts to run before build
before_build:
- cmd: call script\appveyor\cuda_install.cmd
build_script:
- cmd: cd C:\projects\penguinv
- cmd: md build
- cmd: cd build
- cmd: if "%platform%"=="x64" cmake -G "Visual Studio 14 2015 Win64" ..
- cmd: if "%platform%"=="x86" cmake -G "Visual Studio 14 2015" ..
- cmd: cmake --build . --config %configuration%
test_script:
# OpenCL unit test is excluded as it fails with Exception: Exit code 0xc0000135 on Appveyor
- cmd: ctest -C %configuration% -E unit_tests_opencl --extra-verbose