forked from xLightsSequencer/xLights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
47 lines (39 loc) · 1.12 KB
/
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
43
44
45
46
47
# ci.appveyor.com build file ... continuous integration build of xLights for windows on appveyor
# Creates a VM with Visual Studio and pulls xLights and its dependencies and builds it
version: '{build}'
# only build the master branch
branches:
only:
- master
os: Visual Studio 2015
# setup multiple build styles
environment:
matrix:
# Visual Studio 64 bit debug
#- platform: x64
# configuration: Debug
# PLATFORMTOOLSET: 140
# BUILDTYPE: X64DEBUGVS
# gcc 64 bit release
- platform: x64
configuration: 64bit MinGW_Release
PLATFORMTOOLSET: 140
BUILDTYPE: X64RELEASEGCC
# gcc 32 bit release
- platform: x86
configuration: MinGW_Release
PLATFORMTOOLSET: 140
BUILDTYPE: X86RELEASEGCC
notifications:
- provider: Email
to:
on_build_success: false
on_build_failure: true
on_build_status_changed: true
build_script:
- ps: Start-FileDownload 'https://downloads.sourceforge.net/project/cbp2make/cbp2make-stl-rev147-all.tar.7z'
- appveyor.bat
# fail as soon as any build fails
matrix:
fast_finish: true