Skip to content

Commit

Permalink
Publish symbols to symweb (#6014)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmahone authored Oct 4, 2021
1 parent e35f1ef commit 9fcf518
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions build/AzurePipelinesTemplates/MUX-BuildDevProject-Steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,21 @@ steps:
"ToolVersion" : "1.0"
}
]
- task: PublishSymbols@2 # We only publish symbols to microsoftpublicsymbols for signed builds.
displayName: 'Publish symbols'
# We only publish symbols to microsoftpublicsymbols for signed builds.
- task: PublishSymbols@2 # Publish symbols to public Microsoft Symbol Server
displayName: 'Publish symbols (public)'
inputs:
SearchPattern: $(buildOutputDir)/$(buildConfiguration)/$(buildPlatform)/**/*.pdb
SymbolServerType: 'TeamServices'
env:
LIB: $(Build.SourcesDirectory)
ArtifactServices_Symbol_AccountName: microsoftpublicsymbols
ArtifactServices_Symbol_PAT: $(WinUILab-Pipeline-PAT)
- task: PublishSymbols@2 # Publish symbols to internal symweb
displayName: 'Publish symbols (internal)'
inputs:
SearchPattern: $(buildOutputDir)/$(buildConfiguration)/$(buildPlatform)/**/*.pdb
SymbolServerType: 'TeamServices'

- template: MUX-MakeFrameworkPackages-Steps.yml
parameters:
Expand Down

0 comments on commit 9fcf518

Please sign in to comment.