зеркало из https://github.com/microsoft/BuildXL.git
Merged PR 786666: Use system default working directory in publish symbols
Use System.DefaultWorkingDirectory for downloading artifacts in publish symbols instead of BuildXL.ExternalLKGsPackagePath, which is a variable from release pipeline and need to be passed through queue time variables.
This commit is contained in:
Родитель
928c9b1182
Коммит
eb68c85880
|
@ -24,15 +24,15 @@ jobs:
|
|||
pipelineId: '$(RollingBuild.BuildId)'
|
||||
artifactName: 'buildxl-external.pkgs.$(RollingBuild.BuildNumber)'
|
||||
itemPattern: 'Microsoft.BuildXL.win-x64.0.1.0*'
|
||||
targetPath: '$(BuildXL.ExternalLKGsPackagePath)\win'
|
||||
targetPath: '$(System.DefaultWorkingDirectory)\win'
|
||||
|
||||
- task: PowerShell@2
|
||||
inputs:
|
||||
targetType: 'inline'
|
||||
script: |
|
||||
# Expand buildxl windows pkg
|
||||
$directory = "$(BuildXL.ExternalLKGsPackagePath)\Win"
|
||||
$destinationDirectory = "$(BuildXL.ExternalLKGsPackagePath)\WinExpanded"
|
||||
$directory = "$(System.DefaultWorkingDirectory)\Win"
|
||||
$destinationDirectory = "$(System.DefaultWorkingDirectory)\WinExpanded"
|
||||
|
||||
$file = Get-ChildItem -Path $directory -Filter *.nupkg
|
||||
$nameWithoutExtension = [System.IO.Path]::GetFileNameWithoutExtension($file.FullName)
|
||||
|
@ -80,7 +80,7 @@ jobs:
|
|||
- task: PublishSymbols@2
|
||||
enabled: true
|
||||
inputs:
|
||||
SymbolsFolder: '$(BuildXL.ExternalLKGsPackagePath)\WinExpanded'
|
||||
SymbolsFolder: '$(System.DefaultWorkingDirectory)\WinExpanded'
|
||||
SearchPattern: '**'
|
||||
IndexSources: false
|
||||
SymbolServerType: 'TeamServices'
|
||||
|
|
Загрузка…
Ссылка в новой задаче