-
Hi and a happy new year to everyone ;-) I currently having a weird behaviour executing
My task dependencies are strict sequencial on terms of So how do I wait? for the upload task to finish as |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
UploadArtifact command only sends a console log command to the Azure DevOps build agent which parses the log and starts a background process that will store and associate the artifact with the build. So it's per definition an asynchronous process. cake/src/Cake.Common/Build/AzurePipelines/AzurePipelinesCommands.cs Lines 173 to 179 in a5cbbfa cake/src/Cake.Common/Build/AzurePipelines/AzurePipelinesCommands.cs Lines 182 to 189 in a5cbbfa |
Beta Was this translation helpful? Give feedback.
UploadArtifact command only sends a console log command to the Azure DevOps build agent which parses the log and starts a background process that will store and associate the artifact with the build. So it's per definition an asynchronous process.
cake/src/Cake.Common/Build/AzurePipelines/AzurePipelinesCommands.cs
Lines 173 to 179 in a5cbbfa
cake/src/Cake.Common/Build/AzurePipelines/AzurePipelinesCommands.cs
Lines 182 to 189…