diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-03-07 17:36:17 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-03-07 19:53:35 -0600 |
commit | 67274acee7b9b4d989cf354f7cc3f1665d12b80c (patch) | |
tree | ebdf9615d9f0bf723257d6c9a95042bba9bc8c6e /appveyor.yml | |
parent | fc41b90c2746c78ec7b1d7f9a14686ddc09fed12 (diff) | |
download | wix-67274acee7b9b4d989cf354f7cc3f1665d12b80c.tar.gz wix-67274acee7b9b4d989cf354f7cc3f1665d12b80c.tar.bz2 wix-67274acee7b9b4d989cf354f7cc3f1665d12b80c.zip |
Configure crash dumps and get them and pdbs in the logs artifact
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index c8446afd..9ff158b4 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
@@ -2,7 +2,6 @@ | |||
2 | 2 | ||
3 | branches: | 3 | branches: |
4 | only: | 4 | only: |
5 | - master | ||
6 | - develop | 5 | - develop |
7 | 6 | ||
8 | image: Visual Studio 2022 | 7 | image: Visual Studio 2022 |
@@ -23,6 +22,12 @@ environment: | |||
23 | install: | 22 | install: |
24 | - reg add HKLM\Software\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f | 23 | - reg add HKLM\Software\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f |
25 | - reg add HKLM\Software\WOW6432Node\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f | 24 | - reg add HKLM\Software\WOW6432Node\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f |
25 | - reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /t REG_EXPAND_SZ /v DumpFolder /d "%CD%\build\logs\crashdumps" /f | ||
26 | - reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /t REG_DWORD /v DumpCount /d 10 /f | ||
27 | - reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /t REG_DWORD /v DumpType /d 1 /f | ||
28 | - reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\Windows Error Reporting\LocalDumps" /t REG_EXPAND_SZ /v DumpFolder /d "%CD%\build\logs\crashdumps" /f | ||
29 | - reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\Windows Error Reporting\LocalDumps" /t REG_DWORD /v DumpCount /d 10 /f | ||
30 | - reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\Windows Error Reporting\LocalDumps" /t REG_DWORD /v DumpType /d 1 | ||
26 | 31 | ||
27 | build_script: | 32 | build_script: |
28 | - src\build_official.cmd | 33 | - src\build_official.cmd |