From 02cab70b77824db0ee2268e9a449056463b46193 Mon Sep 17 00:00:00 2001 From: Geoff Evans Date: Wed, 6 Oct 2021 17:44:25 -0700 Subject: [PATCH] Use x86 version of pdbstr to workaround a GitHub Actions issue --- source_index_pdb.bat | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source_index_pdb.bat b/source_index_pdb.bat index e3af37b..056e615 100644 --- a/source_index_pdb.bat +++ b/source_index_pdb.bat @@ -37,7 +37,8 @@ echo SRCSRV: end ------------------------------------------------ >> source_inde echo: echo Adding srcsrv section to %1... -"%ProgramFiles(x86)%\Windows Kits\10\Debuggers\x64\srcsrv\pdbstr.exe" -w -p:%1 -s:srcsrv -i:source_index.txt +:: Using x86 here only because Github Actions has issues https://github.com/actions/virtual-environments/issues/4208 +"%ProgramFiles(x86)%\Windows Kits\10\Debuggers\x86\srcsrv\pdbstr.exe" -w -p:%1 -s:srcsrv -i:source_index.txt echo pdbstr exited with errorlevel %ERRORLEVEL% popd