forked from etlegacy/etlegacy-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
57 lines (45 loc) · 1.23 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
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 2.75.{build}
# you can use {branch} name in version format too
# version: 1.0.{build}-{branch}
# branches to build
branches:
only:
- master
# Build worker image (VM template)
image: Visual Studio 2015
# environment variables
environment:
VisualStudioVersion: "14.0"
# scripts that run after cloning repository
install:
- cmd: git submodule update --init --recursive
# to run your custom scripts instead of automatic MSBuild
build_script:
- cmd: easybuild.bat clean build package -noextra
# to disable automatic builds
build: on
# to disable automatic tests
test: off
# Disable deploy
deploy: off
#---------------------------------#
# notifications #
#---------------------------------#
notifications:
- provider: Email
to:
subject: Build {{status}}
message: '{{commitId}}, {{message}}'
on_build_success: false
on_build_failure: false
on_build_status_changed: true
- provider: Webhook
url: https://webhooks.gitter.im/e/88b2318a9e31215be0c9
on_build_success: false
on_build_failure: true
on_build_status_changed: true