summaryrefslogtreecommitdiff
path: root/buildpipeline
diff options
context:
space:
mode:
authorDavis Goodin <dagood@users.noreply.github.com>2017-07-24 17:06:44 -0500
committerGitHub <noreply@github.com>2017-07-24 17:06:44 -0500
commit8a1f3be272da45bcde8c072b6868a94589a52c6f (patch)
treeeed7bbc5fa87d486010a08e059f5839c511999d2 /buildpipeline
parent94d374d22c1bb2b4815a05b5049f39d9b78de9cd (diff)
downloadcoreclr-8a1f3be272da45bcde8c072b6868a94589a52c6f.tar.gz
coreclr-8a1f3be272da45bcde8c072b6868a94589a52c6f.tar.bz2
coreclr-8a1f3be272da45bcde8c072b6868a94589a52c6f.zip
Create Windows PDBs from Portable PDBs during symbol archive (#12796)
* Update BuildTools to 2.0.0-prerelease-01812-02 * Use "GetAllSymbolFilesToPublish" target "UnzipSymbolPackagesForPublish" only unzips. "GetAllSymbolFilesToPublish" is a new target that unzips then generates Windows PDBs. This allows us to index Windows PDBs on symweb even when not archiving.
Diffstat (limited to 'buildpipeline')
-rw-r--r--buildpipeline/DotNet-Trusted-Publish-Symbols.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildpipeline/DotNet-Trusted-Publish-Symbols.json b/buildpipeline/DotNet-Trusted-Publish-Symbols.json
index edbb8c0749..a85b3f96e9 100644
--- a/buildpipeline/DotNet-Trusted-Publish-Symbols.json
+++ b/buildpipeline/DotNet-Trusted-Publish-Symbols.json
@@ -56,7 +56,7 @@
"scriptName": "",
"arguments": "-BuildType $(PB_BuildType) -SymPkgGlob $(PB_AzureContainerSymbolPackageGlob) -Branch $(SourceBranch)",
"workingFolder": "$(Pipeline.SourcesDirectory)",
- "inlineScript": "param($BuildType, $SymPkgGlob, $Branch)\nif ($BuildType -ne \"Release\") { exit }\n$archive = $Branch.StartsWith(\"release/\")\n\n$target = \"UnzipSymbolPackagesForPublish\"\nif ($archive) { $target = \"SubmitSymbolsRequest\" }\n\n.\\run.cmd build -- `\n/t:$target `\n/p:SymbolPackagesToPublishGlob=$SymPkgGlob `\n/p:ArchiveSymbols=$archive `\n/v:D",
+ "inlineScript": "param($BuildType, $SymPkgGlob, $Branch)\nif ($BuildType -ne \"Release\") { exit }\n$archive = $Branch.StartsWith(\"release/\")\n\n$target = \"GetAllSymbolFilesToPublish\"\nif ($archive) { $target = \"SubmitSymbolsRequest\" }\n\n.\\run.cmd build -- `\n/t:$target `\n/p:SymbolPackagesToPublishGlob=$SymPkgGlob `\n/p:ArchiveSymbols=$archive `\n/v:D",
"failOnStandardError": "true"
}
},