You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want to upload both binaries and pdbs to the symbol server since this is required to get full debugging information in WinDBG. Unfortunately we can't upload them in a single call because searchPattern prevents this.
The glob module supports multiple glob filter patterns when delimited by newlines (docs):
But we can't leverage this with this github action because of the concatenation logic: const globber = await glob.create(path.join(symbolsFolder, searchPattern)) (here)
The text was updated successfully, but these errors were encountered:
We want to upload both binaries and pdbs to the symbol server since this is required to get full debugging information in WinDBG. Unfortunately we can't upload them in a single call because
searchPattern
prevents this.The glob module supports multiple glob filter patterns when delimited by newlines (docs):
But we can't leverage this with this github action because of the concatenation logic:
const globber = await glob.create(path.join(symbolsFolder, searchPattern))
(here)The text was updated successfully, but these errors were encountered: