forked from ROCm/rocm-cmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
36 lines (28 loc) · 943 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
os: Visual Studio 2015
environment:
matrix:
# - GENERATOR: "Visual Studio 14 2015 Win64"
# CONFIG: Debug
# - GENERATOR: "Visual Studio 14 2015 Win64"
# CONFIG: Release
- GENERATOR: "Visual Studio 14 2015"
CONFIG: Debug
# - GENERATOR: "Visual Studio 14 2015"
# CONFIG: Release
matrix:
fast_finish: true
build_script:
- cmd: set PATH=C:\Program Files (x86)\CMake\bin;%PATH%
- cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
- cmd: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\vsvars32.bat"
- cmd: git config --global user.email "[email protected]"
- cmd: git config --global user.name "Your Name"
- cmd: set CTEST_OUTPUT_ON_FAILURE=1
- cmd: cmake --version
- cmd: mkdir build
- cmd: cd build
- cmd: cmake .. -G"%GENERATOR%"
- cmd: cmake --build . --config %CONFIG% --target check
# test_script:
# - cmd: ctest -C Debug --output-on-failure
# - cmd: cd ../../