forked from fluentribbon/Fluent.Ribbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
40 lines (31 loc) · 1.16 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
# configuration for develop and master branch
-
branches:
only:
- develop
- master
skip_tags: true
image: Visual Studio 2019 Preview
configuration: Release
platform: Any CPU
test: off
pull_requests:
do_not_increment_build_number: false
# Install dotnet core 3.0 latest (alpha!!), as this is not provided on AppVeyor yet
install:
- ps: Start-FileDownload 'https://dotnetcli.blob.core.windows.net/dotnet/Sdk/master/dotnet-sdk-latest-win-x64.exe'
- ps: Start-Process .\dotnet-sdk-latest-win-x64.exe "/install /norestart /quiet /log sdkinstall.log" -NoNewWindow -Wait
build_script:
- ps: .\build.ps1 -Target CI -Verbosity Verbose
after_build:
- ps: gci -Filter *.trx -Path .\TestResults\ | % { (New-Object 'System.Net.WebClient').UploadFile("https://ci.appveyor.com/api/testresults/mstest/$($env:APPVEYOR_JOB_ID)", (Resolve-Path $_.FullName)) }
artifacts:
- path: \package\*.*
nuget:
disable_publish_on_pr: true
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/855da764a995f5aa1a24
on_build_success: true
on_build_failure: true
on_build_status_changed: false