File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ phases:
11
11
_phaseName : ${{ parameters.name }}
12
12
_arch : ${{ parameters.architecture }}
13
13
queue :
14
+ timeoutInMinutes : 40
14
15
parallel : 99
15
16
matrix :
16
17
Build_Debug :
@@ -40,21 +41,21 @@ phases:
40
41
mergeTestResults : true
41
42
- task : CopyFiles@2
42
43
displayName : Stage build logs
43
- condition : failed( )
44
+ condition : not(succeeded() )
44
45
inputs :
45
46
sourceFolder : $(Build.SourcesDirectory)
46
47
contents : ' ?(msbuild.*|binclash.log|init-tools.log)'
47
48
targetFolder : $(Build.ArtifactStagingDirectory)
48
49
- task : CopyFiles@2
49
50
displayName : Stage test output
50
- condition : failed( )
51
+ condition : not(succeeded() )
51
52
inputs :
52
53
sourceFolder : $(Build.SourcesDirectory)/bin
53
54
contents : ' **/TestOutput/**/*'
54
55
targetFolder : $(Build.ArtifactStagingDirectory)
55
56
- task : PublishBuildArtifacts@1
56
57
displayName : Publish build and test logs
57
- condition : failed( )
58
+ condition : not(succeeded() )
58
59
inputs :
59
60
pathToPublish : $(Build.ArtifactStagingDirectory)
60
61
artifactName : ${{ parameters.name }} $(_config_short)
You can’t perform that action at this time.
0 commit comments