[JIRA] (JENKINS-54281) Test Result Trend is broken

2018-12-11 Thread nfalc...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Nikolas Falco closed an issue as Cannot Reproduce  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54281  
 
 
  Test Result Trend is broken   
 

  
 
 
 
 

 
Change By: 
 Nikolas Falco  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Cannot Reproduce  
 

  
 
 
 
 

 
 
 

 
 
 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-54281) Test Result Trend is broken

2018-11-16 Thread nfalc...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Nikolas Falco commented on  JENKINS-54281  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Test Result Trend is broken   
 

  
 
 
 
 

 
 I need the test report to reproduce the issue. I'm not able to run any C compile on my machine.  
 

  
 
 
 
 

 
 
 

 
 
 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-54281) Test Result Trend is broken

2018-11-07 Thread nfalc...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Nikolas Falco commented on  JENKINS-54281  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Test Result Trend is broken   
 

  
 
 
 
 

 
 Could you post the generated report? In my PC I do not have cmake installed and I would not install all cmake stack to perform the test. Keep in mind that the image is generated by the junit-plugin and not from the xunit-plugin. xunit just converto cpp test report into junit report. Could you also post the URl of the broken image?  
 

  
 
 
 
 

 
 
 

 
 
 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-54281) Test Result Trend is broken

2018-10-26 Thread kostya.ri...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Konstantin Ripak created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54281  
 
 
  Test Result Trend is broken   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Nikolas Falco  
 
 
Attachments: 
 installed_plugins.log, Screenshot from 2018-10-26 21-44-02.png, test_project.tar.gz  
 
 
Components: 
 xunit-plugin  
 
 
Created: 
 2018-10-26 18:52  
 
 
Environment: 
 Jenkins Version: 2.138.2  
 
 
Priority: 
  Major  
 
 
Reporter: 
 Konstantin Ripak  
 

  
 
 
 
 

 
 The image that should show test results is broken. Howewer, test results are accessible and seem to be ok. Installed plugins and versions: installed_plugins.log Test project attached. test_project.tar.gz Sample pipeline: 

 

pipeline {
agent {
node {
label 'ubuntu14.04'   
}
}

stages {
stage("checkout") {
steps {
checkout scm
}
}
stage("build") {
steps {
sh "cmake ."
sh '/usr/bin/cmake --build . -- test ARGS="--no-compress-output -T Test"'
sh "ls -la  Testing/*"
xunit([CTest(deleteOutputFiles: true, failIfNotNew: true, pattern: 'Testing/*/Test.xml', skipNoTestFiles: false, stopProcessingIfError: true)])
}
}
}
}