You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to investigate if it's feasible implementing a custom pipeline task which executes a couple of tasks (for example downloading multiple pipeline artifacts) in parallel.
If so, I would be honored if I could contribute on this.
For example, let's suppose we have something like that:
- task: ParallelTasksV0
- powershell: |
Write-Host 'This is Task 1 executed in parallel.'
Start-Sleep -Seconds 5
displayName: Task 1
- powershell: |
Write-Host 'This is Task 2 executed in parallel.'
Start-Sleep -Seconds 15
displayName: Task 2
It would be possible to get a reference of the Task 1 and Task 2 tasks so they can be executed simultaneously?
Thank you in advance for the help and any useful suggestions :)
The content you are editing has changed. Please copy your edits and refresh the page.
Hello everyone,
I'm trying to investigate if it's feasible implementing a custom pipeline task which executes a couple of tasks (for example downloading multiple pipeline artifacts) in parallel.
If so, I would be honored if I could contribute on this.
For example, let's suppose we have something like that:
It would be possible to get a reference of the Task 1 and Task 2 tasks so they can be executed simultaneously?
Thank you in advance for the help and any useful suggestions :)
Tasks
The text was updated successfully, but these errors were encountered: