forked from yanghuan/bridge.lua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
228 lines (171 loc) · 6.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# Notes:
# - Minimal appveyor.yml file is an empty file. All sections are optional.
# - Indent each level of configuration with 2 spaces. Do not use tabs!
# - All section names are case-sensitive.
# - Section names should be unique on each level.
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 1.11.{build}-{branch}
# branches to build
branches:
# whitelist
only:
- temp
# blacklist
#except:
#- gh-pages
# Do not build on tags (GitHub only)
skip_tags: true
#---------------------------------#
# environment configuration #
#---------------------------------#
# Operating system (build VM template)
os: Visual Studio 2015 RC
# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.autocrlf input
# clone directory
clone_folder: c:\projects\Bridge
# fetch repository as zip archive
shallow_clone: true # default is "false"
# set clone depth
clone_depth: 30 # clone entire repository history if not defined
# environment variables
environment:
VisualStudioVersion: 12
# this is how to set encrypted variable. Go to "Encrypt data" page in account menu to encrypt data.
#my_secure_var1:
#secure: FW3tJ3fMncxvs58/ifSP7w==
# build cache to preserve files/folders between builds
cache:
- packages -> **\packages.config
# scripts that run after cloning repository
install:
- cmd: git.exe clone -q --progress -v --depth 20 --branch=master "https://github.com/bridgedotnet/Frameworks" "c:\projects\Frameworks"
# - cmd: git.exe clone -q --progress -v --depth 20 --branch=master "https://github.com/bridgedotnet/Testing" "c:\projects\Testing"
#---------------------------------#
# build configuration #
#---------------------------------#
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform: Any CPU
# build Configuration, i.e. Debug, Release, etc.
configuration: Release
build:
# parallel: true # enable MSBuild parallel builds
project: c:\projects\Bridge\Bridge.sln # path to Visual Studio solution or project
# MSBuild verbosity level
verbosity: minimal
# scripts to run before build
before_build:
# scripts to run after build
after_build:
# to run your custom scripts instead of automatic MSBuild
build_script:
# to disable automatic builds
#build: off
# scripts to run before tests
before_test:
# - echo script1
- ps: >-
try
{
#$ChutzpahDir = get-childitem chutzpah.console.exe -recurse | select-object -first 1 | select -expand Directory
#$ChutzpahPath = "${ChutzpahDir}" + "\chutzpah.console.exe"
$ChutzpahPath = "c:\projects\Bridge\packages\Chutzpah.4.0.1\tools\chutzpah.console.exe"
$ChutzpahHtml = "c:\projects\" + "Bridge\Testing\www\index.html"
$Exe = "${ChutzpahPath}"
$Arguments = "${ChutzpahHtml}","/silent","/junit","chutzpah-results.xml"
Write-Host "Running Chutzpah:"
Write-Host $Exe $Arguments
&$Exe $Arguments
$testsuites = [xml](get-content chutzpah-results.xml)
$anyFailures = $FALSE
$hasAtLeastOneTestRun = $FALSE
foreach ($testsuite in $testsuites.testsuites.testsuite) {
write-host " $($testsuite.name)"
foreach ($testcase in $testsuite.testcase) {
$failed = $testcase.failure
$time = $testsuite.time
if ($testcase.time) { $time = $testcase.time }
if ($failed) {
write-host "Failed $($testcase.name) $($testcase.failure.message)"
Add-AppveyorTest $testcase.name -Outcome Failed -FileName $testsuite.name -ErrorMessage $testcase.failure.message -Duration $time
$anyFailures = $TRUE
$hasAtLeastOneTestRun = $TRUE
}else {
$hasAtLeastOneTestRun = $TRUE
write-host "Passed $($testcase.name)"
Add-AppveyorTest $testcase.name -Outcome Passed -FileName $testsuite.name -Duration $time
}
}
}
if ($hasAtLeastOneTestRun -eq $FALSE) {
write-host "There should be at least one test executed"
$host.SetShouldExit(1)
}
if ($anyFailures -eq $TRUE) {
write-host "Failing build as there are broken tests"
$host.SetShouldExit(1)
}
}
catch
{
write-host "Error occurred"
$ErrorMessage = $_.Exception.Message
$FailedItem = $_.Exception.ItemName
write-host $ErrorMessage
write-host $FailedItem
$host.SetShouldExit(1)
}
# scripts to run after tests
after_test:
# to run your custom scripts instead of automatic tests
test_script:
#- echo This is my custom test script
- nunit-console "c:\projects\Bridge\Compiler\TranslatorTests\bin\Release\Bridge.Translator.Tests.dll"
# to disable automatic tests
# test:
# assemblies:
# - builder\translatortests\bin\$(configuration)\bridge.translator.tests.dll
# scripts to run before deployment
before_deploy:
# scripts to run after deployment
after_deploy:
# to run your custom scripts instead of provider deployments
deploy_script:
# to disable deployment
#deploy: off
#---------------------------------#
# global handlers #
#---------------------------------#
# on successful build
on_success:
# - do something
# on build failure
on_failure:
# - do something
# after build failure or success
on_finish:
- ps: $root = Resolve-Path Compiler\TranslatorTests; [IO.Directory]::GetFiles($root.Path, '*.log', 'AllDirectories') | % { Push-AppveyorArtifact $_ -FileName $_.Substring($root.Path.Length + 1) -DeploymentName TranslatorTestsLog }
#---------------------------------#
# notifications #
#---------------------------------#
notifications:
- provider: Email
to:
- vladimir@object.net
- daniil@object.net
- fabricio@object.net
- leonid@object.net
on_build_status_changed: true
on_build_success: false
on_build_failure: true
- provider: Slack
auth_token:
secure: zSdvelf8KpJg8tlCgYGPNygKefpXDGYETPAy5LX/xNTKcvcyt0V0hU4ISNUIEEKE
channel: github
on_build_status_changed: true
on_build_success: true
on_build_failure: true