We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2d7619 commit 6ee2961Copy full SHA for 6ee2961
azure-pipelines.yml
@@ -350,6 +350,16 @@ jobs:
350
- checkout: self
351
fetchDepth: 1
352
353
+ # Conditional delay step
354
+ - powershell: |
355
+ if ($env:BUILD_MDP_RESULT -eq 'Succeeded') {
356
+ Write-Host "Build_MDP succeeded, waiting for 10 minutes for the NuGet package to be processed before starting the job..."
357
+ Start-Sleep -Seconds 600
358
+ }
359
+ displayName: 'Waiting for NuGet being published'
360
+ env:
361
+ BUILD_MDP_RESULT: $(Build.MDP.result)
362
+
363
- template: azure-pipelines-templates/install-nuget.yml@templates
364
365
# update dependencies
0 commit comments