We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc7d633 commit ca65938Copy full SHA for ca65938
.github/jobs/win32.yml
@@ -75,6 +75,14 @@ jobs:
75
displayName: "Add ASAN runtime DLLs to PATH"
76
condition: ${{parameters.enableSanitizers}}
77
78
+ # When running with Chakra, unhandled JavaScript exceptions trigger the JIT debugger, which
79
+ # causes the test to hang. This will disable the JIT debugger for Chakra.
80
+ - script: |
81
+ for /f %%i in ('vswhere -property instanceId') do (
82
+ reg add HKCU\Software\Microsoft\VisualStudio\Debugger\JIT\{F200A7E7-DEA5-11D0-B854-00A0244A1DE2}\%%i /f /v Disabled /t REG_DWORD /d 1
83
+ )
84
+ displayName: "Disable JIT Debugger for Script"
85
+
86
- script: |
87
cd build${{variables.solutionName}}\Apps\Playground
88
cd RelWithDebInfo
0 commit comments