Azure Devops Self-hosted Agent parallel jobs

Viewed 2798

We have deployed Azure devops Self-hosted Agent in our own agentpool.

enter image description here

We have also purchased 4 parallel job per agent , but when our build runs, it runs only one job at a time and other pipeline/release jobs have to wait.

How can we run 4 parallel pipeline/release jobs ?

enter image description here

2 Answers

How can we run 4 parallel pipeline/release jobs ?

According to your screenshot, you seem to only register one self-hosted agent, and running a parallel job will consume one agent, so if you want to run 4 jobs in parallel, you need to register at least 4 self-hosted agents.

Related