Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

Parallel Loop Block



  • Is it possible to have each iteration of a loop block run in parallel? I know the general block can run statements in parallel but most of my build steps that can benefit from parallelism also benefit from being in a loop. i.e. applying database scripts

    Product: BuildMaster
    Version: 5.5.3



  • Yes indeed, take a look at Asynchronous Blocks. Here is how you would do it in OtterScript:

    foreach $value in @list
    {
       with async
       {
          ... items ...
       }
    }
    await;


Inedo Website HomeSupport HomeCode of ConductForums GuideDocumentation