Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/jobs/win32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ jobs:
displayName: "Add ASAN runtime DLLs to PATH"
condition: ${{parameters.enableSanitizers}}

# When running with Chakra, unhandled JavaScript exceptions trigger the JIT debugger, which
# causes the test to hang. This will disable the JIT debugger for Chakra.
- script: |
for /f %%i in ('vswhere -property instanceId') do (
reg add HKCU\Software\Microsoft\VisualStudio\Debugger\JIT\{F200A7E7-DEA5-11D0-B854-00A0244A1DE2}\%%i /f /v Disabled /t REG_DWORD /d 1
)
displayName: "Disable JIT Debugger for Script"

- script: |
cd build${{variables.solutionName}}\Apps\Playground
cd RelWithDebInfo
Expand Down
Loading