-
-
Notifications
You must be signed in to change notification settings - Fork 207
/
Copy pathappveyor.yml
43 lines (34 loc) · 850 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
42
43
version: 1.0.{build}
image: Visual Studio 2017
configuration: Release
init:
- ps: >-
choco install opencover.portable
choco install dotnetcore-sdk
choco install codecov
choco install "msbuild-sonarqube-runner" -y
before_build:
- cmd: >-
git clone -q --branch=master https://github.com/mixcore/mix.heart.git C:\projects\mix.heart
git clone -q --branch=master https://github.com/mixcore/mix.identity.git C:\projects\mix.identity
cd src
nuget restore
cd Mix.Cms.Web
dotnet restore
dotnet build
build:
project: src\MixCore.sln
verbosity: minimal
test_script:
- cmd: >-
artifacts:
- path: dist
name: web-app
notifications:
- provider: Email
to:
- nhathoang989@gmail.com
subject: '[ mixcore ] Build failure'
on_build_success: false
on_build_failure: true
on_build_status_changed: false