File tree 2 files changed +30
-16
lines changed
2 files changed +30
-16
lines changed Original file line number Diff line number Diff line change 16
16
- input : checkout
17
17
repository : self
18
18
fetchDepth : 1
19
+ outputs :
20
+ - output : pipelineArtifact
21
+ targetPath : $(Build.SourcesDirectory)/Out/Logs
22
+ artifactName : BuildXL-Logs.$(System.JobName).$(System.JobAttempt)
23
+ condition : always()
24
+ continueOnError : true
25
+ displayName : Upload BuildXL Logs
26
+ os : linux
27
+ sdl :
28
+ credscan :
29
+ enabled : false
30
+ antimalwareScan :
31
+ enabled : false
32
+ publishLogs :
33
+ enabled : false
19
34
20
35
timeoutInMinutes : 90
21
36
@@ -125,14 +140,6 @@ jobs:
125
140
PATCloudBuild: $(PAT-TseBuild-AzureDevOps-CloudBuild-Packaging-Read)
126
141
VSTSPERSONALACCESSTOKEN: $(PAT-TseBuild-AzureDevOps-mseng-buildcache)
127
142
128
- - task : PublishPipelineArtifact@1
129
- displayName : Upload BuildXL Logs
130
- inputs :
131
- targetPath : $(Build.SourcesDirectory)/Out/Logs
132
- artifactName : BuildXL-Logs.$(System.JobName).$(System.JobAttempt)
133
- condition : always()
134
- continueOnError : true
135
-
136
143
- task : PublishTestResults@2
137
144
displayName : Publish Test Results
138
145
inputs :
Original file line number Diff line number Diff line change @@ -57,6 +57,21 @@ extends:
57
57
- input : checkout
58
58
repository : self
59
59
fetchDepth : 1
60
+ outputs :
61
+ - output : pipelineArtifact
62
+ targetPath : $(PackageDir)
63
+ artifactName : $(PackageArtifactName)
64
+ condition : always()
65
+ continueOnError : true
66
+ displayName : Publish Pipeline Artifact
67
+ os : linux
68
+ sdl :
69
+ credscan :
70
+ enabled : false
71
+ antimalwareScan :
72
+ enabled : false
73
+ publishLogs :
74
+ enabled : false
60
75
steps :
61
76
- bash : make cleanall && make all -j
62
77
workingDirectory : Public/Src/Sandbox/Linux
@@ -67,14 +82,6 @@ extends:
67
82
workingDirectory : Public/Src/Sandbox/Linux
68
83
displayName : Pack Nuget
69
84
70
- - task : PublishPipelineArtifact@1
71
- inputs :
72
- targetPath : $(PackageDir)
73
- artifactName : $(PackageArtifactName)
74
- condition : always()
75
- continueOnError : true
76
- displayName : Publish Pipeline Artifact
77
-
78
85
# Publish the built runtime in a separate job
79
86
# TODO: this could be merged with the previous job if the container image had all the required tools preinstalled
80
87
- ${{ if parameters.PublishLinuxRuntimeNuget }} :
You can’t perform that action at this time.
0 commit comments