aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/burn/appveyor.yml')
-rw-r--r--src/test/burn/appveyor.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/burn/appveyor.yml b/src/test/burn/appveyor.yml
new file mode 100644
index 00000000..d12975dc
--- /dev/null
+++ b/src/test/burn/appveyor.yml
@@ -0,0 +1,27 @@
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
4image: Visual Studio 2019
5
6environment:
7 DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
8 DOTNET_CLI_TELEMETRY_OPTOUT: 1
9 NUGET_XMLDOC_MODE: skip
10 RuntimeTestsEnabled: true
11
12
13install:
14 - reg add HKLM\Software\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f
15 - reg add HKLM\Software\WOW6432Node\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f
16
17build_script:
18 - appveyor.cmd
19
20test: off
21
22skip_branch_with_pr: true
23skip_tags: true
24
25on_finish:
26 - ps: 7z a ('logs_' + (Get-Date).tostring("yyyyMMddHHmmss") + '.zip') $env:TEMP\*.log $env:TEMP\..\*.log
27 - ps: Push-AppveyorArtifact logs_*.zip