Skip to content

Commit

Permalink
Fix Windows crash dump configuration in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gopalrs authored Dec 7, 2024
1 parent 597ec46 commit b09b099
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dynamic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
submodules: true
- name: Configure Windows to Generate Crash Dumps
run: |
reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /v DumpFolder /t REG_EXPAND_SZ /d "%SystemDrive%\\CrashDumps" /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /v DumpCount /t REG_DWORD /d 10 /f
reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /v DumpType /t REG_DWORD /d 2 /f
reg add HKLM\\SOFTWARE\\Microsoft\\Windows\\Windows\ Error\ Reporting\\LocalDumps //f
reg add HKLM\\SOFTWARE\\Microsoft\\Windows\\Windows\ Error\ Reporting\\LocalDumps //v DumpFolder //t REG_EXPAND_SZ //d "./dist" //f
reg add HKLM\\SOFTWARE\\Microsoft\\Windows\\Windows Error Reporting\\LocalDumps" //v DumpCount //t REG_DWORD //d 10 //f
reg add HKLM\\SOFTWARE\\Microsoft\\Windows\\Windows Error Reporting\\LocalDumps" //v DumpType //t REG_DWORD //d 2 //f
- name: DiskANN Build CLI Applications
uses: ./.github/actions/build
Expand Down

0 comments on commit b09b099

Please sign in to comment.