[solved] Parallel Projects/Repos

Is it possible to let repos build parallel? So of course I saw https://docs.drone.io/pipeline/overview/ that it is possible to build parallel steps. But we have more repos on our drone ci server and then if one project is building the other one is waiting with such a clock 56
And I found nothing in docs where to configure parallel builds.

If you want to increase concurrency you can:

  • Configure your agent to process more builds using DRONE_MAX_PROCS. For example, if DRONE_MAX_PROCS=2, your agent will process 2 builds at a time
  • Add more servers and agents

Great, that worked perfect! Thx