1
votes

I just set up a self hosted build server to augment the 1800 free minutes we get on the free hosted agent.

It appears to me that the system is only scheduling one of them at a time. I would have expected that I could have used both in parallel for free.

Is this not the case?

If not, if I purchase a single parallel job license (about US15 / month from memory?), will that allow me to run the two agents concurrently?

Thanks :-)

1

1 Answers

1
votes

This is achievable. You need assign self hosted agent and free hosted agent to your jobs respectively to run them in parallel.

For example:

jobs:
- job: A
  pool:
    name: "free hosted agent pool"
  steps:

- job: B
  pool:
    name: "self hosted agent pool"
  steps:

However i found Microsoft-hosted agent can run in parallel with only one self hosted agent for private project.

Additionally: Mirosoft provides 10 free parallel jobs for public project and 1 free parallel job for private. For more information