Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Parallelism in Jenkins is defined at the Stage level which means that…

...

that a single Jenkins Pipeline is invoked, containing…

  • Some Stages configured to run sequentially

    with each Step within those Stages running sequentially

    (with their component Steps running sequentially), and/or

  • Some Stages

    configure

    configured to run concurrently

    with each Step within those Stages

    (with their component Steps running sequentially)

See Parallel stages with Declarative Pipeline 1.2 (jenkins.io)

...