forked from RehanSaeed/Schema.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
42 lines (34 loc) · 1.14 KB
/
appveyor.yml
File metadata and controls
42 lines (34 loc) · 1.14 KB
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
# AppVeyor documentation https://www.appveyor.com/docs
version: '{build}'
image:
- Ubuntu
- Visual Studio 2019
pull_requests:
# Do not increment build number for pull requests
do_not_increment_build_number: true
nuget:
# Do not publish for pull requests
disable_publish_on_pr: true
environment:
# Set the DOTNET_SKIP_FIRST_TIME_EXPERIENCE environment variable to stop wasting time caching packages
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
# Disable sending usage data to Microsoft
DOTNET_CLI_TELEMETRY_OPTOUT: true
build_script:
- sh: sudo apt update
- sh: sudo apt install -y apt-transport-https dotnet-sdk-3.0
- cmd: choco install dotnetcore-sdk --no-progress --confirm --version 3.0.100
- pwsh: dotnet tool install --global Cake.Tool
- pwsh: dotnet cake --target=Build
- pwsh: dotnet cake --target=Test
- pwsh: dotnet cake --target=Pack
test: off
artifacts:
- name: NuGet Packages
path: ./Artifacts/**/*.nupkg
- name: NuGet Symbol Packages
path: ./Artifacts/**/*.snupkg
- name: xUnit XML Test Results
path: ./Artifacts/**/*.xml
- name: xUnit HTML Test Results
path: ./Artifacts/**/*.html