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 /.github | |
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 '.github')
-rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de2d426f..f7385584 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
@@ -30,6 +30,18 @@ jobs: | |||
30 | # shell: cmd | 30 | # shell: cmd |
31 | # run: ./src/vs_config.cmd | 31 | # run: ./src/vs_config.cmd |
32 | 32 | ||
33 | - name: Configure automated logging and crash dumps | ||
34 | shell: cmd | ||
35 | run: | | ||
36 | reg add HKLM\Software\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f | ||
37 | reg add HKLM\Software\WOW6432Node\Policies\Microsoft\Windows\Installer /t REG_SZ /v Logging /d voicewarmupx /f | ||
38 | reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /t REG_EXPAND_SZ /v DumpFolder /d "%CD%\build\logs\crashdumps" /f | ||
39 | reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /t REG_DWORD /v DumpCount /d 10 /f | ||
40 | reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /t REG_DWORD /v DumpType /d 1 /f | ||
41 | reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\Windows Error Reporting\LocalDumps" /t REG_EXPAND_SZ /v DumpFolder /d "%CD%\build\logs\crashdumps" /f | ||
42 | reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\Windows Error Reporting\LocalDumps" /t REG_DWORD /v DumpCount /d 10 /f | ||
43 | reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\Windows Error Reporting\LocalDumps" /t REG_DWORD /v DumpType /d 1 | ||
44 | |||
33 | - name: Build wix4 | 45 | - name: Build wix4 |
34 | shell: cmd | 46 | shell: cmd |
35 | run: ./src/build_official.cmd | 47 | run: ./src/build_official.cmd |