Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WiP: nightly versioning for distinct symbol archiving by version #6534

Draft
wants to merge 11 commits into
base: master
Choose a base branch
from
8 changes: 4 additions & 4 deletions scripts/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down