3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 12:08:18 +00:00

collect symbols to architecture folder

This commit is contained in:
jofleish 2022-08-31 15:42:33 -04:00
parent 9c7a3e4f8d
commit 1080a9de84

View file

@ -149,12 +149,12 @@ stages:
inputs:
sourceFolder: dist
contents: '**/*.pdb'
targetFolder: '$(Build.ArtifactStagingDirectory)/symbols'
targetFolder: '$(Build.ArtifactStagingDirectory)/symbols/x86'
# Publish symbol archive to match nuget package
# Index your source code and publish symbols to a file share or Azure Artifacts symbol server
- task: PublishSymbols@2
inputs:
symbolsFolder: '$(Build.ArtifactStagingDirectory)/symbols'
symbolsFolder: '$(Build.ArtifactStagingDirectory)/symbols/x86'
searchPattern: '**/*.pdb'
indexSources: false # Github not supported
publishSymbols: true
@ -189,12 +189,12 @@ stages:
inputs:
sourceFolder: dist
contents: '**/*.pdb'
targetFolder: '$(Build.ArtifactStagingDirectory)/symbols'
targetFolder: '$(Build.ArtifactStagingDirectory)/symbols/x64'
# Publish symbol archive to match nuget package
# Index your source code and publish symbols to a file share or Azure Artifacts symbol server
- task: PublishSymbols@2
inputs:
symbolsFolder: '$(Build.ArtifactStagingDirectory)/symbols'
symbolsFolder: '$(Build.ArtifactStagingDirectory)/symbols/x64'
searchPattern: '**/*.pdb'
indexSources: false # Github not supported
publishSymbols: true