diff options
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..f12cca2d --- /dev/null +++ b/appveyor.yml | |||
@@ -0,0 +1,25 @@ | |||
1 | # Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
2 | |||
3 | branches: | ||
4 | only: | ||
5 | - master | ||
6 | |||
7 | image: Visual Studio 2019 | ||
8 | |||
9 | environment: | ||
10 | DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | ||
11 | DOTNET_CLI_TELEMETRY_OPTOUT: 1 | ||
12 | NUGET_XMLDOC_MODE: skip | ||
13 | RuntimeTestsEnabled: true | ||
14 | WIX_COMPRESSION_LEVEL: none | ||
15 | |||
16 | build_script: | ||
17 | - appveyor.cmd | ||
18 | |||
19 | test: off | ||
20 | |||
21 | skip_tags: true | ||
22 | |||
23 | on_finish: | ||
24 | - ps: 7z a logs.zip $env:TEMP\*.log $env:TEMP\..\*.log | ||
25 | - ps: Push-AppveyorArtifact logs.zip | ||