[JIRA] [clang-scanbuild-plugin] (JENKINS-28130) Latest (1.5) Clang scan-build plugin fails to publish

2015-12-20 Thread rodr...@freebsd.org (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Craig Rodrigues closed an issue as Fixed 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-28130 
 
 
 
  Latest (1.5) Clang scan-build plugin fails to publish  
 
 
 
 
 
 
 
 
 

Change By:
 
 Craig Rodrigues 
 
 
 

Status:
 
 Resolved Closed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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] [clang-scanbuild-plugin] (JENKINS-28130) Latest (1.5) Clang scan-build plugin fails to publish

2015-06-13 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon commented on  JENKINS-28130 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Latest (1.5) Clang scan-build plugin fails to publish  
 
 
 
 
 
 
 
 
 
 
Code changed in jenkins User: Craig Rodrigues Path: src/main/java/jenkins/plugins/clangscanbuild/publisher/ClangScanBuildPublisher.java http://jenkins-ci.org/commit/clang-scanbuild-plugin/aaa7c9c25c0feee15818dd72d3da6d1829a42d2a Log: Fix null pointer exception in getClangexcludedpaths 
Suggested by: Christopher Orr, Johannes Plunien 
[FIXED JENKINS-28130] 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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] [clang-scanbuild-plugin] (JENKINS-28130) Latest (1.5) Clang scan-build plugin fails to publish

2015-06-13 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 SCM/JIRA link daemon resolved as Fixed 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 Jenkins /  JENKINS-28130 
 
 
 
  Latest (1.5) Clang scan-build plugin fails to publish  
 
 
 
 
 
 
 
 
 

Change By:
 
 SCM/JIRA link daemon 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 Fixed 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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] [clang-scanbuild-plugin] (JENKINS-28130) Latest (1.5) Clang scan-build plugin fails to publish

2015-05-19 Thread ch...@orr.me.uk (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Christopher Orr commented on  JENKINS-28130 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Latest (1.5) Clang scan-build plugin fails to publish  
 
 
 
 
 
 
 
 
 
 
This commit broke things by assuming that a newly-introduced config option exists in existing job configurations: https://github.com/jenkinsci/clang-scanbuild-plugin/commit/0fa4d64 
The workaround is to open your job config, then hit Save. 
Or, if you have ~50 jobs like we do, you can fix this programmatically via the Script Console with something like this: 

 

for (job in Jenkins.instance.items) {
  for (p in job.publishers) {
if (p.value.class.simpleName.equals(ClangScanBuildPublisher)) {
  println job.name
  cs = p.value
  cs.clangexcludedpaths = 
  job.save()
}
  }
}
 

 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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] [clang-scanbuild-plugin] (JENKINS-28130) Latest (1.5) Clang scan-build plugin fails to publish

2015-05-05 Thread tom.ghyseli...@excentis.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Tom Ghyselinck edited a comment on  JENKINS-28130 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Latest (1.5) Clang scan-build plugin fails to publish  
 
 
 
 
 
 
 
 
 
 Myconsolelogshows{noformat}PublishingClangscan-buildresultsCouldnotlocateauniquescan-buildoutputfolderin:/var/hudson/workspace/MyProject/clangScanBuildReportsERROR:Publisherhudson.plugins.templateproject.ProxyPublisherabortedduetoexceptionjava.lang.NullPointerException atjenkins.plugins.clangscanbuild.publisher.ClangScanBuildPublisher.perform(ClangScanBuildPublisher.java:120) athudson.plugins.templateproject.ProxyPublisher.perform(ProxyPublisher.java:71) athudson.tasks.BuildStepMonitor$2.perform(BuildStepMonitor.java:32) athudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:770) athudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:734) athudson.model.Build$BuildExecution.post2(Build.java:183) athudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:683) athudson.model.Run.execute(Run.java:1784) athudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43) athudson.model.ResourceController.execute(ResourceController.java:89) athudson.model.Executor.run(Executor.java:240){noformat} Using:*Jenkins1.596.2LTS*ClangScan-BuildPlugin1.5 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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] [clang-scanbuild-plugin] (JENKINS-28130) Latest (1.5) Clang scan-build plugin fails to publish

2015-05-05 Thread tom.ghyseli...@excentis.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Tom Ghyselinck commented on  JENKINS-28130 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
  Re: Latest (1.5) Clang scan-build plugin fails to publish  
 
 
 
 
 
 
 
 
 
 
My console log shows 

 
Publishing Clang scan-build results
Could not locate a unique scan-build output folder in: /var/hudson/workspace/MyProject/clangScanBuildReports
ERROR: Publisher hudson.plugins.templateproject.ProxyPublisher aborted due to exception
java.lang.NullPointerException
	at jenkins.plugins.clangscanbuild.publisher.ClangScanBuildPublisher.perform(ClangScanBuildPublisher.java:120)
	at hudson.plugins.templateproject.ProxyPublisher.perform(ProxyPublisher.java:71)
	at hudson.tasks.BuildStepMonitor$2.perform(BuildStepMonitor.java:32)
	at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:770)
	at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:734)
	at hudson.model.Build$BuildExecution.post2(Build.java:183)
	at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:683)
	at hudson.model.Run.execute(Run.java:1784)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:89)
	at hudson.model.Executor.run(Executor.java:240) 

 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 


 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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] [clang-scanbuild-plugin] (JENKINS-28130) Latest (1.5) Clang scan-build plugin fails to publish

2015-04-29 Thread francis.lab...@gmail.com (JIRA)












































 
Francis Labrie
 edited a comment on  JENKINS-28130


Latest (1.5) Clang scan-build plugin fails to publish
















I get the same error, I had to go back to version 1.4.

Xcode version is:


$ /usr/bin/xcodebuild -version
Xcode 6.2
Build version 6C131e




























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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] [clang-scanbuild-plugin] (JENKINS-28130) Latest (1.5) Clang scan-build plugin fails to publish

2015-04-28 Thread ja...@howeswho.co.uk (JIRA)














































James Howe
 created  JENKINS-28130


Latest (1.5) Clang scan-build plugin fails to publish















Issue Type:


Bug



Assignee:


Josh Kennedy



Components:


clang-scanbuild-plugin



Created:


28/Apr/15 2:31 PM



Description:


Publishing Clang scan-build results
ERROR: Publisher jenkins.plugins.clangscanbuild.publisher.ClangScanBuildPublisher aborted due to exception
java.lang.NullPointerException
	at jenkins.plugins.clangscanbuild.publisher.ClangScanBuildPublisher.perform(ClangScanBuildPublisher.java:120)
	at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20)
	at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:770)
	at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:734)
	at hudson.model.Build$BuildExecution.post2(Build.java:183)
	at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:683)
	at hudson.model.Run.execute(Run.java:1784)
	at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
	at hudson.model.ResourceController.execute(ResourceController.java:89)
	at hudson.model.Executor.run(Executor.java:240)




Environment:


Jenkins 1.595

clang-scanbuild-plugin 	1.5

scan-build 276




Project:


Jenkins



Priority:


Critical



Reporter:


James Howe

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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] [clang-scanbuild-plugin] (JENKINS-28130) Latest (1.5) Clang scan-build plugin fails to publish

2015-04-28 Thread francis.lab...@gmail.com (JIRA)














































Francis Labrie
 commented on  JENKINS-28130


Latest (1.5) Clang scan-build plugin fails to publish















I get the same error, I have to revert to version 1.4.

Xcode version is:


$ /usr/bin/xcodebuild -version
Xcode 6.2
Build version 6C131e




























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
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.