blob: 0e8123803bab5d446fb77a9c0a3e89516c94c2ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# 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.
image: Visual Studio 2019
environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
NUGET_XMLDOC_MODE: skip
RuntimeTestsEnabled: true
WIX_COMPRESSION_LEVEL: none
build_script:
- appveyor.cmd
test: off
skip_tags: true
on_finish:
- ps: 7z a logs.zip $env:TEMP\*.log $env:TEMP\..\*.log
- ps: Push-AppveyorArtifact logs.zip
|