pipeline { agent any stages { stage('Build') { when { expression { false } } parallel { stage('Backend') { steps { buildbackend } } stage('Frontend') { steps { buildfrontend } } } } }}pipeline { agent any stages { stage('Build') { parallel { stage('Backend') { when { expression { false } } steps { buildbackend } } stage('Frontend') { when { expression { false } } steps { buildfrontend } } } } }}[Pipeline] stage
[Pipeline] { (Build)
[Pipeline] parallel
[Pipeline] [Backend] { (Branch: Backend)
[Pipeline] [Frontend] { (Branch: Frontend)
[Pipeline] [Backend] stage
[Pipeline] [Backend] { (Backend)
[Pipeline] [Frontend] stage
[Pipeline] [Frontend] { (Frontend)
Stage 'Backend' skipped due to when conditional
Stage 'Frontend' skipped due to when conditional
[Pipeline] [Backend] }
[Pipeline] [Frontend] }
[Pipeline] [Backend] // stage
[Pipeline] [Frontend] // stage
[Pipeline] [Backend] }
[Pipeline] [Frontend] }
[Pipeline] // parallel
[Pipeline] }
[Pipeline] // stage