forked from dotnet/pinvoke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
34 lines (33 loc) · 1 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
version: 1.0.{build}
skip_tags: true
os: Visual Studio 2015
configuration: Release
environment:
VisualStudioVersion: 14.0
GeneratePInvokesTxt: true
TreatWarningsAsErrors: true
cache:
- '%USERPROFILE%\.nuget\packages -> **\project.json'
install:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/install-nuget-3-3-0.ps1'))
before_build:
- ps: >-
nuget restore src -Verbosity quiet
#$blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
build:
project: src\pinvoke.sln
parallel: true
verbosity: minimal
artifacts:
- path: bin\**\*.nupkg
name: NuGet Package
- path: bin\**\*.pinvokes.txt
name: PInvoke method coverage
- path: bin\**\*.exports.txt
name: Exported methods
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/c4d61fc5002e9a62a22f
on_build_success: true
on_build_failure: true
on_build_status_changed: true