aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2023-01-23 16:30:20 -0800
committerRob Mensching <rob@firegiant.com>2023-01-23 17:34:01 -0800
commitec64f0c0c517f3d5d5979bfe891d58cfb954a6a2 (patch)
tree18d19e7904d864947eb752726fb50b7bffbbb30a /src/test
parent7a3869780e294be7d4ae38d1215c6e5e84798d2f (diff)
downloadwix-ec64f0c0c517f3d5d5979bfe891d58cfb954a6a2.tar.gz
wix-ec64f0c0c517f3d5d5979bfe891d58cfb954a6a2.tar.bz2
wix-ec64f0c0c517f3d5d5979bfe891d58cfb954a6a2.zip
Remove use of AppVeyor
WiX v4 standardized on GitHub Actions for the build process. AppVeyor served us well and provides a great service for free. But since we moved to GitHub Actions let's not burn cycles on their build machines. Closes 7175
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run_test.yml26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/run_test.yml b/src/test/run_test.yml
deleted file mode 100644
index 787edeff..00000000
--- a/src/test/run_test.yml
+++ /dev/null
@@ -1,26 +0,0 @@
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
12install:
13 - reg add HKLM\Software\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f
14 - reg add HKLM\Software\WOW6432Node\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f
15
16build_script:
17 - run_test.cmd
18
19test: off
20
21skip_branch_with_pr: true
22skip_tags: true
23
24on_finish:
25 - ps: 7z a ('logs_' + (Get-Date).tostring("yyyyMMddHHmmss") + '.zip') $env:TEMP\*.log $env:TEMP\..\*.log
26 - ps: Push-AppveyorArtifact logs_*.zip