Introduction
(included from generic page?)
Introduction
At which pipeline level?
Our use cases: Compliance (WARN), Compliance (FAIL), and Unit Test steps (term?) concurrently.
See Parallel stages with Declarative Pipeline 1.2 (jenkins.io)
Defining Parallel Stages in Jenkins Pipeline
Something Something
pipeline { agent none stages { stage('Run Tests') { parallel { stage('Test On Windows') { agent { label "windows" } steps { bat "run-tests.bat" } post { always { junit "**/TEST-*.xml" } } } stage('Test On Linux') { agent { label "linux" } steps { sh "run-tests.sh" } post { always { junit "**/TEST-*.xml" } } } } } } }