stage("One of the parallel Stage") {
script {
if ( condition ) {
...
} else {
catchError(buildResult: 'SUCCESS', stageResult: 'NOT_BUILT') {
error("Stage skipped: conditions not met")
}
}
}
}