-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
40 lines (32 loc) · 969 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
version: 0.0.{build}
clone_folder: C:\projects\Mezz_Test
image:
- Visual Studio 2017
environment:
matrix:
- GENERATOR: Visual Studio 15 2017 Win64
configuration:
- Debug
- Release
before_build:
# Stop useless Xamarin Build targets from making messages
- del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
# Finalize build prep
- mkdir build
- cd build
- mkdir JagatiPackages
- set JAGATI_DIR=C:\projects\Mezz_Test\build\JagatiPackages
- echo "Current Configuration is '%CONFIGURATION%'"
- cmake -G "%GENERATOR%" -DCMAKE_BUILD_TYPE=%CONFIGURATION% .. -DMEZZ_BuildDoxygen=OFF -DMEZZ_Trace=ON
build_script:
- cmake --build . --config %CONFIGURATION%
test_script:
- cmd: cd C:\projects\Mezz_Test\build
- cmd: Test_Tester xml
notifications:
- provider: Email
to:
- contact@blacktoppstudios.com
on_build_success: false
on_build_failure: true
on_build_status_changed: true