[JIRA] (JENKINS-53192) Blue Ocean mark failed job as success and failed on tests without error messages

2018-08-25 Thread mark.earl.wa...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mark Waite updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53192  
 
 
  Blue Ocean mark failed job as success and failed on tests without error messages   
 

  
 
 
 
 

 
Change By: 
 Mark Waite  
 
 
Component/s: 
 git-plugin  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-53192) Blue Ocean mark failed job as success and failed on tests without error messages

2018-08-22 Thread igor.solo...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Igor Solovko updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53192  
 
 
  Blue Ocean mark failed job as success and failed on tests without error messages   
 

  
 
 
 
 

 
Change By: 
 Igor Solovko  
 
 
Attachment: 
 Screenshot BlueOcean.png  
 

  
 
 
 
 

 
  I have next pipeline:{code:java}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'  }}  }}{code}  Blue Ocean mark failed job as success and failed on tests without error messages  !Screenshot BlueOcean.png!    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA 

[JIRA] (JENKINS-53192) Blue Ocean mark failed job as success and failed on tests without error messages

2018-08-22 Thread igor.solo...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Igor Solovko created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53192  
 
 
  Blue Ocean mark failed job as success and failed on tests without error messages   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Attachments: 
 Screenshot BlueOcean.png  
 
 
Components: 
 blueocean-pipeline-editor-plugin, git-plugin, maven-plugin  
 
 
Created: 
 2018-08-22 16:57  
 
 
Environment: 
 Jenkins ver. v2.73.2 and Blue Ocean v 1.3.3  
 
 
Priority: 
  Major  
 
 
Reporter: 
 Igor Solovko  
 

  
 
 
 
 

 
  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'
  }
}
  }
}