forked from getsentry/sentry-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
34 lines (33 loc) · 865 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
version: "{build}"
image: Visual Studio 2019
environment:
global:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "1" # Used by the dotnet SDK prior to v3.0
DOTNET_CLI_TELEMETRY_OPTOUT: "1"
test: off
branches:
only:
- master
- /^release\/.*$/
build_script:
- ps: ./build.ps1
dotnet_csproj:
patch: true
file: 'src\**\*.csproj'
version: "{version}"
package_version: "{version}"
artifacts:
- path: '**\*.nupkg'
install:
# Push job information to Zeus
- npm install -g @zeus-ci/cli
- bash scripts\zeus.sh report_pending
on_success:
- ps: |
$env:PATH = 'C:\msys64\usr\bin;' + $env:PATH
Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh
bash codecov.sh -f "**\coverage.xml"
# Upload *.nupkg files to Zeus
bash scripts/zeus.sh upload_artifacts
on_failure:
- bash scripts\zeus.sh report_failed