[JIRA] (JENKINS-50873) When a test method is named `owner`, test results can't be viewed

2018-04-18 Thread rahul....@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Rahul Somasunderam created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-50873  
 
 
  When a test method is named `owner`, test results can't be viewed   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 junit-plugin  
 
 
Created: 
 2018-04-18 19:15  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Rahul Somasunderam  
 

  
 
 
 
 

 
 Clicking on the test method causes a redirect to the build home.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
  

[JIRA] [job-dsl-plugin] (JENKINS-30433) Documentation is out of sync with code

2015-09-15 Thread rahul....@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rahul Somasunderam commented on  JENKINS-30433 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Documentation is out of sync with code  
 
 
 
 
 
 
 
 
 
 

 

cd /tmp
mkdir find-matches
cd find-matches
git clone https://github.com/jenkinsci/job-dsl-plugin.git
git clone https://github.com/jenkinsci/job-dsl-plugin.wiki.git
grep -r "job {" .
 

 
 
 
 
 
 
 
 
 
 
 
 
 

 
 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] [job-dsl-plugin] (JENKINS-30433) Documentation is out of sync with code

2015-09-14 Thread rahul....@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rahul Somasunderam commented on  JENKINS-30433 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Documentation is out of sync with code  
 
 
 
 
 
 
 
 
 
 
https://github.com/jenkinsci/job-dsl-plugin 
The README.md has this  

 

job {
using 'TMPL-test'
name 'PROJ-unit-tests'
scm {
git(gitUrl)
}
triggers {
scm('*/15 * * * *')
}
steps { // build step
maven('-e clean test')
}
}
 

 
With 1.38, the job method requires the name to be passed as a param to the job method like this 

 

job('PROJ-unit-tests') {
using 'TMPL-test'
scm {
git(gitUrl)
}
triggers {
scm('*/15 * * * *')
}
steps { // build step
maven('-e clean test')
}
}
 

 
 
 
 
 
 
 
 
 
 
 
 
 

 
 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] [job-dsl-plugin] (JENKINS-30433) Documentation is out of sync with code

2015-09-13 Thread rahul....@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Rahul Somasunderam created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-30433 
 
 
 
  Documentation is out of sync with code  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Daniel Spilker 
 
 
 

Components:
 

 job-dsl-plugin 
 
 
 

Created:
 

 14/Sep/15 1:09 AM 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 Rahul Somasunderam 
 
 
 
 
 
 
 
 
 
 
Earlier the name of the job was set inside the closure, but then it was changed to be a param to the method, outside of the closure. 
The plugin homepage on github doesn't have this set correctly. Also many pages in the wiki are using the old format. 
It would be nice if the documentation could stay up to date with the code and tests, as done by the groovy project. 
I see many pages from the wiki are under the docs directory. Would it be a bad endeavor to migrate the docs to asciidoctor and achieve that effect? If the job-dsl authors would like that idea, I can start working on it. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment