|
1 |
| -parameters: |
2 |
| - includeMacOS: |
3 |
| - |
4 | 1 | steps:
|
5 |
| -- task: DownloadPipelineArtifact@2 |
6 |
| - inputs: |
7 |
| - artifact: symbols-Windows |
8 |
| - path: $(Pipeline.Workspace)/symbols/Windows |
9 |
| - displayName: 🔻 Download Windows symbols |
10 |
| - continueOnError: true |
11 |
| -- task: DownloadPipelineArtifact@2 |
12 |
| - inputs: |
13 |
| - artifact: symbols-Linux |
14 |
| - path: $(Pipeline.Workspace)/symbols/Linux |
15 |
| - displayName: 🔻 Download Linux symbols |
16 |
| - continueOnError: true |
17 |
| -- task: DownloadPipelineArtifact@2 |
18 |
| - inputs: |
19 |
| - artifact: symbols-macOS |
20 |
| - path: $(Pipeline.Workspace)/symbols/macOS |
21 |
| - displayName: 🔻 Download macOS symbols |
22 |
| - continueOnError: true |
23 |
| - condition: ${{ parameters.includeMacOS }} |
24 |
| - |
25 |
| -- task: DownloadPipelineArtifact@2 |
26 |
| - inputs: |
27 |
| - artifact: test_symbols-Windows |
28 |
| - path: $(Pipeline.Workspace)/test_symbols/Windows |
29 |
| - displayName: 🔻 Download Windows test symbols |
30 |
| - continueOnError: true |
31 |
| -- task: DownloadPipelineArtifact@2 |
32 |
| - inputs: |
33 |
| - artifact: test_symbols-Linux |
34 |
| - path: $(Pipeline.Workspace)/test_symbols/Linux |
35 |
| - displayName: 🔻 Download Linux test symbols |
36 |
| - continueOnError: true |
37 |
| -- task: DownloadPipelineArtifact@2 |
38 |
| - inputs: |
39 |
| - artifact: test_symbols-macOS |
40 |
| - path: $(Pipeline.Workspace)/test_symbols/macOS |
41 |
| - displayName: 🔻 Download macOS test symbols |
42 |
| - continueOnError: true |
43 |
| - condition: ${{ parameters.includeMacOS }} |
44 | 2 |
|
45 | 3 | - task: PublishSymbols@2
|
46 | 4 | inputs:
|
47 |
| - SymbolsFolder: $(Pipeline.Workspace)/symbols |
| 5 | + SymbolsFolder: $(Build.ArtifactStagingDirectory)/symbols |
48 | 6 | SearchPattern: '**/*.pdb'
|
49 | 7 | IndexSources: false
|
50 | 8 | SymbolServerType: TeamServices
|
51 | 9 | displayName: 📢 Publish symbols
|
52 | 10 |
|
53 | 11 | - task: PublishSymbols@2
|
54 | 12 | inputs:
|
55 |
| - SymbolsFolder: $(Pipeline.Workspace)/test_symbols |
| 13 | + SymbolsFolder: $(Build.ArtifactStagingDirectory)/test_symbols |
56 | 14 | SearchPattern: '**/*.pdb'
|
57 | 15 | IndexSources: false
|
58 | 16 | SymbolServerType: TeamServices
|
|
0 commit comments