-
Notifications
You must be signed in to change notification settings - Fork 4
/
.appveyor.yml
41 lines (35 loc) · 880 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
40
41
environment:
matrix:
- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4.1"
PYTHON_ARCH: "64"
WINDOWS_SDK_VERSION: "v7.1"
DISTRIBUTIONS: "bdist_wheel"
# Branches to build:
branches:
# whitelist
only:
- master
# Operating system (build VM template)
os: Visual Studio 2015
# Init:
init:
- "echo %PYTHON%"
# Install:
install:
- "%PYTHON%/Scripts/pip.exe install colorama"
# Build:
build_script:
- cmd: example-run-Win-VS2015.bat
- cmd: "%PYTHON%/python.exe build.py -c -b Debug"
- cmd: "%PYTHON%/python.exe build.py -c -b Release"
- cmd: "%PYTHON%/python.exe build.py -c -b RelWithDebInfo"
- cmd: "%PYTHON%/python.exe build.py -c -b MinSizeRel"
# Notifications:
notifications:
- provider: Email
to:
on_build_success: false
on_build_failure: true
on_build_status_changed: true