-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Major
-
Component/s: blueocean-pipeline-editor-plugin, maven-plugin
-
Environment:Jenkins ver. v2.73.2 and Blue Ocean v 1.3.3
 I have next pipeline:
pipelines {
validations {
steps {
'0' {
name = 'Download Project Repository'
groovySource = 'scripts/Stages.groovy'
function = 'cloneProjectRepo'
}
'1' {
parallel {
'1' {
name = 'Title'
groovySource = 'scripts/Validation.groovy'
function = 'title'
}
'2' {
name = 'Jira'
groovySource = 'scripts/Validation.groovy'
function = 'jira'
}
'3' {
name = 'Sonar'
groovySource = 'scripts/Validation.groovy'
function = 'sonar'
}
}
}
'2' {
name = 'Tests'
groovySource = 'scripts/Validation.groovy'
function = 'test'
}
}
always {
'1' {
name = 'Cleanup Workspace'
groovySource = 'scripts/Stages.groovy'
function = 'getWsCleanupClosure'
}
}
}
}
Blue Ocean mark failed job as success and failed on tests without error messages
Â
Â
- relates to
-
JENKINS-52923 Error Signal Description not displayed in Blue Ocean
-
- Open
-
-
JENKINS-52923 Error Signal Description not displayed in Blue Ocean
-
- Open
-