forked from xLightsSequencer/xLights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
60 lines (51 loc) · 2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
# 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 2019
# setup multiple build styles
environment:
matrix:
# Visual Studio 64 bit release
- platform: x64
configuration: Release
PLATFORMTOOLSET: 141
BUILDTYPE: X64RELEASEVS
# gcc 64 bit release
#- platform: x64
# configuration: 64bit MinGW_Release
# PLATFORMTOOLSET: 140
# BUILDTYPE: X64RELEASEGCC
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'
# InnoSetup
- ps: Start-FileDownload 'http://www.jrsoftware.org/download.php/is.exe?site=1'
# wxWidgets
- ps: Start-FileDownload 'https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.3/wxWidgets-3.1.3.zip'
#- ps: Start-FileDownload 'http://sourceforge.net/projects/codeblocks/files/Binaries/17.12/Windows/codeblocks-17.12-nosetup.zip'
# This is not required because it is built in to the appveyor image
#- ps: Start-FileDownload 'https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/7.2.0/threads-posix/seh/x86_64-7.2.0-release-posix-seh-rt_v5-rev0.7z'
#- ps: Start-FileDownload 'https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/7.2.0/threads-posix/dwarf/i686-7.2.0-release-posix-dwarf-rt_v5-rev0.7z'
- appveyor.bat
#deploy:
# provider: FTP
# protocol: ftps
# host: ftp.xlights.org
# username: appveyor
# password:
# secure: AAAAAAAAA====
# folder: wwwroot
# artifact: /xlights_*.exe
# fail as soon as any build fails
matrix:
fast_finish: true