[JIRA] (JENKINS-40653) CulpritsRecipientProvider does not work with pipeline

2016-12-22 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-40653  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: CulpritsRecipientProvider does not work with pipeline   
 

  
 
 
 
 

 
 Code changed in jenkins User: David van Laatum Path: src/main/java/hudson/plugins/emailext/plugins/recipients/CulpritsRecipientProvider.java src/test/java/hudson/plugins/emailext/plugins/recipients/CulpritsRecipientProviderTest.java http://jenkins-ci.org/commit/email-ext-plugin/60629e806a83d66a866b8985b3dbf2108642f240 Log: fix JENKINS-40653 CulpritsRecipientProvider does not work with pipeline  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40504) Access denied connecting to TFS server

2016-12-22 Thread sureshprs...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Suresh Nagarajan commented on  JENKINS-40504  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Access denied connecting to TFS server
 

  
 
 
 
 

 
 Thanks Oli for your response, For the above issue i do not have enough permission, Then I have asked admin to give my self to have enough permission, now i can able to access.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40653) CulpritsRecipientProvider does not work with pipeline

2016-12-22 Thread cdlee...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Makson Lee edited a comment on  JENKINS-40653  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: CulpritsRecipientProvider does not work with pipeline   
 

  
 
 
 
 

 
 this works,{code:java}node ('docker'){try {checkout([$class: 'GitSCM', branches: [[name: 'refs/heads/master']], userRemoteConfigs: [[url: 'git://server/test']]]) // error ""currentBuild.result = 'SUCCESS'} catch (Exception e) {currentBuild.result = 'FAILURE'}emailext body: "test", recipientProviders: [[$class: 'CulpritsRecipientProvider']], subject: "test"}{code}this does not,{code:java}node ('docker'){try {checkout([$class: 'GitSCM', branches: [[name: 'refs/heads/master']], userRemoteConfigs: [[url: 'git://server/test']]]) // error ""currentBuild.result = 'SUCCESS'} catch (Exception e) {currentBuild.result = 'FAILURE'}emailext body: "test", recipientProviders: [[$class: 'CulpritsRecipientProvider']], subject: "test"}{code}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40653) CulpritsRecipientProvider does not work with pipeline

2016-12-22 Thread cdlee...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Makson Lee commented on  JENKINS-40653  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: CulpritsRecipientProvider does not work with pipeline   
 

  
 
 
 
 

 
 this works, 

 

node ('docker'){
try {
checkout([$class: 'GitSCM', branches: [[name: 'refs/heads/master']], userRemoteConfigs: [[url: 'git://server/test']]])
//error ""
currentBuild.result = 'SUCCESS'
} catch (Exception e) {
currentBuild.result = 'FAILURE'
}
emailext body: "test", recipientProviders: [[$class: 'CulpritsRecipientProvider']], subject: "test"
}
 

 this does not, 

 

node ('docker'){
try {
checkout([$class: 'GitSCM', branches: [[name: 'refs/heads/master']], userRemoteConfigs: [[url: 'git://server/test']]])
error ""
currentBuild.result = 'SUCCESS'
} catch (Exception e) {
currentBuild.result = 'FAILURE'
}
emailext body: "test", recipientProviders: [[$class: 'CulpritsRecipientProvider']], subject: "test"
}
 

  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are 

[JIRA] (JENKINS-40653) CulpritsRecipientProvider does not work with pipeline

2016-12-22 Thread da...@vanlaatum.id.au (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David van Laatum commented on  JENKINS-40653  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: CulpritsRecipientProvider does not work with pipeline   
 

  
 
 
 
 

 
 ie if its just the && runResult.isWorseThan(Result.SUCCESS) thats stopping it, easy fix   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40653) CulpritsRecipientProvider does not work with pipeline

2016-12-22 Thread da...@vanlaatum.id.au (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David van Laatum commented on  JENKINS-40653  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: CulpritsRecipientProvider does not work with pipeline   
 

  
 
 
 
 

 
 true. Does it work for you if the current build is not successful though?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40653) CulpritsRecipientProvider does not work with pipeline

2016-12-22 Thread cdlee...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Makson Lee commented on  JENKINS-40653  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: CulpritsRecipientProvider does not work with pipeline   
 

  
 
 
 
 

 
 the inline document for Curlprits says, "Sends email to the list of users who committed a change since the last non-broken build till now. This list at least always include people who made changes in this build, but if the previous build was a failure it also includes the culprit list from there." so even the current build result is Result.SUCCESS, people who made changes in current build should be added to recipient, right?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40653) CulpritsRecipientProvider does not work with pipeline

2016-12-22 Thread da...@vanlaatum.id.au (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David van Laatum commented on  JENKINS-40653  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: CulpritsRecipientProvider does not work with pipeline   
 

  
 
 
 
 

 
 This should work fine. Is your pipelines build status being updated by something prior to calling this?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40653) CulpritsRecipientProvider does not work with pipeline

2016-12-22 Thread cdlee...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Makson Lee updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40653  
 
 
  CulpritsRecipientProvider does not work with pipeline   
 

  
 
 
 
 

 
Change By: 
 Makson Lee  
 

  
 
 
 
 

 
 as you can see in the following code, in our case, the run is always an instance of WorkflowRun, and the runResult is always Result.SUCCESS, so no user would be add to recipient.https://github.com/jenkinsci/email-ext-plugin/blob/master/src/main/java/hudson/plugins/emailext/plugins/recipients/CulpritsRecipientProvider.java{code:java}if (run instanceof AbstractBuild) {Set users = ((AbstractBuild)run).getCulprits();RecipientProviderUtilities.addUsers(users, context.getListener(), env, to, cc, bcc, debug);} else if (runResult != null && runResult.isWorseThan(Result.SUCCESS)) {List builds = new ArrayList<>();Run build = run;while (build != null) {final Result buildResult = build.getResult();if (buildResult != null) {if (buildResult.isWorseThan(Result.SUCCESS)) { debug.send("Including build %s with status %s", build.getId(), buildResult); builds.add(build);} else { break;}}build = build.getPreviousCompletedBuild();}Set users = RecipientProviderUtilities.getChangeSetAuthors(builds, debug);RecipientProviderUtilities.addUsers(users, context.getListener(), env, to, cc, bcc, debug);}{code}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 

[JIRA] (JENKINS-40653) CulpritsRecipientProvider does not work with pipeline

2016-12-22 Thread cdlee...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Makson Lee created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40653  
 
 
  CulpritsRecipientProvider does not work with pipeline   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 David van Laatum  
 
 
Components: 
 email-ext-plugin  
 
 
Created: 
 2016/Dec/23 6:18 AM  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Makson Lee  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google 

[JIRA] (JENKINS-38804) API(s) for capturing parameters for parametrised pipeline jobs

2016-12-22 Thread vivek.pan...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Vivek Pandey updated  JENKINS-38804  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38804  
 
 
  API(s) for capturing parameters for parametrised pipeline jobs   
 

  
 
 
 
 

 
Change By: 
 Vivek Pandey  
 
 
Status: 
 In Review Resolved  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40596) 400 upon opening direct link of project in a GitHub organization project

2016-12-22 Thread vivek.pan...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Vivek Pandey commented on  JENKINS-40596  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: 400 upon opening direct link of project in a GitHub organization project   
 

  
 
 
 
 

 
 Michael Neale Cliff Meyers Don't think its stapler related. Here is what I did: 
 
Create cloudbeers GitHub org project, then load up dashboard and click on "CloudBeers, Inc. /  PR-demo" link that is: http://localhost:8080/jenkins/blue/organizations/jenkins/cloudbeers%2FPR-demo/activity/ 
Reload (press Cmd+R) to reload and it reloads just fine. 
 Could this be something else, like a proxy server as such misbehaving?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40652) origin pr builds treated as trusted

2016-12-22 Thread mar...@ringehahn.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Martin Ringehahn created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40652  
 
 
  origin pr builds treated as trusted   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 github-branch-source-plugin  
 
 
Created: 
 2016/Dec/23 5:06 AM  
 
 
Environment: 
 github-branch-source-plugin: 2.0.0-beta-1  jenkins: 2.36  
 
 
Priority: 
  Major  
 
 
Reporter: 
 Martin Ringehahn  
 

  
 
 
 
 

 
 When building PRs from origin (not forks), their Jenkinsfile is not treated as trusted and loaded from the base branch instead: Loading trusted files from base branch develop at 3ad383ee0eeffc92c9712dc8e3022c4b43a75c94 rather than 3e2b6e35cbf0fd2d4c029fcd23560f04b1976618 Settings: [x] Build origin branches [x] Build origin PRs (unmerged head) IMHO any PR from origin should be treated as trusted. There is no issue with building their branches via "Build origin branches also filed as PRs".  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

[JIRA] (JENKINS-40652) origin pr builds not treated as trusted

2016-12-22 Thread mar...@ringehahn.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Martin Ringehahn updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40652  
 
 
  origin pr builds not treated as trusted   
 

  
 
 
 
 

 
Change By: 
 Martin Ringehahn  
 
 
Summary: 
 origin pr builds  not  treated as trusted  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40155) Team Services online service hook failure

2016-12-22 Thread olivier.dagen...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Olivier Dagenais commented on  JENKINS-40155  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Team Services online service hook failure   
 

  
 
 
 
 

 
 Pull request #143 posted.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40155) Team Services online service hook failure

2016-12-22 Thread olivier.dagen...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Olivier Dagenais stopped work on  JENKINS-40155  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Olivier Dagenais  
 
 
Status: 
 In Progress Open  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40155) Team Services online service hook failure

2016-12-22 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-40155  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Team Services online service hook failure   
 

  
 
 
 
 

 
 Code changed in jenkins User: Olivier Dagenais Path: tfs/src/main/java/hudson/plugins/tfs/model/servicehooks/EventScope.java tfs/src/main/resources/hudson/plugins/tfs/model/GitPullRequestMergedEvent.json tfs/src/main/resources/hudson/plugins/tfs/model/GitPushEvent.json tfs/src/test/java/hudson/plugins/tfs/model/servicehooks/EventScopeTest.java tfs/src/test/resources/hudson/plugins/tfs/git.push-sample.json http://jenkins-ci.org/commit/tfs-plugin/35ad535162803a49b7f1268a8b10642e5889bd35 Log: TDD: Event can have a lowercase value for "scope" JENKINS-40155 reported a failed deserialization due to a case mismatch in the value of "scope", so added a factory method used by Jackson. Compare: https://github.com/jenkinsci/tfs-plugin/compare/02df89fef330^...35ad53516280  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40155) Team Services online service hook failure

2016-12-22 Thread olivier.dagen...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Olivier Dagenais assigned an issue to Olivier Dagenais  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40155  
 
 
  Team Services online service hook failure   
 

  
 
 
 
 

 
Change By: 
 Olivier Dagenais  
 
 
Assignee: 
 redsolo Olivier Dagenais  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40155) Team Services online service hook failure

2016-12-22 Thread olivier.dagen...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Olivier Dagenais started work on  JENKINS-40155  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Olivier Dagenais  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40504) Access denied connecting to TFS server

2016-12-22 Thread olivier.dagen...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Olivier Dagenais assigned an issue to Suresh Nagarajan  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Please re-assign to me with your answer.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-40504  
 
 
  Access denied connecting to TFS server
 

  
 
 
 
 

 
Change By: 
 Olivier Dagenais  
 
 
Assignee: 
 Olivier Dagenais Suresh Nagarajan  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40504) Access denied connecting to TFS server

2016-12-22 Thread olivier.dagen...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Olivier Dagenais assigned an issue to Olivier Dagenais  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40504  
 
 
  Access denied connecting to TFS server
 

  
 
 
 
 

 
Change By: 
 Olivier Dagenais  
 
 
Assignee: 
 redsolo Olivier Dagenais  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40504) Access denied connecting to TFS server

2016-12-22 Thread olivier.dagen...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Olivier Dagenais commented on  JENKINS-40504  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Access denied connecting to TFS server
 

  
 
 
 
 

 
 Suresh Nagarajan: One of the lower stack frames calls out an UnauthorizedException, which suggests that while the account you are using is able to connect to the TFS server, it may not have enough permissions to read from the Team Project Collection. Can you confirm that you are able to log on as the specified user using a web browser and browse to the $/Portals/Dev/path folder in the CarePro collection? Thanks! - Oli  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40622) Add the ability to fold/unfold similar actions in build menu

2016-12-22 Thread mark.earl.wa...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mark Waite assigned an issue to Unassigned  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40622  
 
 
  Add the ability to fold/unfold similar actions in build menu   
 

  
 
 
 
 

 
Change By: 
 Mark Waite  
 
 
Assignee: 
 Mark Waite  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40466) Developer wants to see a message when Jenkins is busy eg: execution is blocked waiting for a node

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay commented on  JENKINS-40466  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Developer wants to see a message when Jenkins is busy eg: execution is blocked waiting for a node   
 

  
 
 
 
 

 
 Vivek Pandey when we do this I think we certainly want to represent it as a step or tie it to the nearest flownode that caused the message.  

 

node ('something') {
stage('A') {
  node('first agent') {
  }
}

stage('B') {
  node('first agent') {
  }
}

stage('C') {
  node('first agent') {
  }
}
}
 

 
 
waiting message for the "something" node should be for the whole pipeline (displayed as we do now with an empty state) 
A, B, C waiting messages should be tied to that stage, perhaps as a step so that we can show it inline with other steps. 
 We also need to explore other ways execution could be blocked. waiting on a node is one but are there more?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-40651) Kubernetes plugin 0.10 failing to start pipeline with message failed to mkdirs

2016-12-22 Thread jr...@vendasta.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Redl created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40651  
 
 
  Kubernetes plugin 0.10 failing to start pipeline with message failed to mkdirs   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Carlos Sanchez  
 
 
Components: 
 kubernetes-plugin  
 
 
Created: 
 2016/Dec/23 2:10 AM  
 
 
Environment: 
 Jenkins ver. 2.19.4  Kubernetes 1.4.4   
 
 
Labels: 
 kubernetes  
 
 
Priority: 
  Major  
 
 
Reporter: 
 Jesse Redl  
 

  
 
 
 
 

 
 After upgrading the kubernetes plugin to 0.10 from 0.90 when starting a pipeline it fails while performing the checkout scm command with the below error.  

 

java.io.IOException: Failed to mkdirs: /home/jenkins/workspace/vendasta_CS_jenkins-build-TMVFST4Q5OYBVUZUBWZJEIQMXWFW7XCHYPMZOWVTMRKFHF6GRX3A
	at hudson.FilePath.mkdirs(FilePath.java:1191)
	at hudson.plugins.git.GitSCM.createClient(GitSCM.java:736)
	at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1088)
	at org.jenkinsci.plugins.workflow.steps.scm.SCMStep.checkout(SCMStep.java:109)
	at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:83)
	at org.jenkinsci.plugins.workflow.steps.scm.SCMStep$StepExecutionImpl.run(SCMStep.java:73)
	at org.jenkinsci.plugins.workflow.steps.AbstractSynchronousNonBlockingStepExecution$1$1.call(AbstractSynchronousNonBlockingStepExecution.java:47)
	at hudson.security.ACL.impersonate(ACL.java:221)
	at 

[JIRA] (JENKINS-40209) Developer can see all pipelines for an organization grouped on the dashboard

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40209  
 
 
  Developer can see all pipelines for an organization grouped on the dashboard   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39298) Text decoration on collapsed result modal breadcrumb looks strange.

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39298  
 
 
  Text decoration on collapsed result modal breadcrumb looks strange.   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39892) When the run fails with tests or another analysis then it should be more obvious

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39892  
 
 
  When the run fails with tests or another analysis then it should be more obvious   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-37834) Spacing and alignment of "action" icons is inconsistent

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37834  
 
 
  Spacing and alignment of "action" icons is inconsistent   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 1.0-beta-1, 1.0-b05/b-06, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38754) Failing test view omits important stdout/stderr information

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38754  
 
 
  Failing test view omits important stdout/stderr information   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 arctic, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38494) User can see the input form on an input step (UI)

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38494  
 
 
  User can see the input form on an input step (UI)   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38596) User can create pipeline from Github repo (Re-entrant flow)

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38596  
 
 
  User can create pipeline from Github repo (Re-entrant flow)   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 pacific, atlantic, indian, arctic, tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38848) API to enumerate available credentials

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38848  
 
 
  API to enumerate available credentials   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 atlantic, indian, arctic, tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38323) Developer can drag and drop to reorder steps within a stage

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38323  
 
 
  Developer can drag and drop to reorder steps within a stage   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 pacific, atlantic, 1.0-b05/b-06, tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-37244) Consistent terminology for builds / pipeline runs

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37244  
 
 
  Consistent terminology for builds / pipeline runs   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 1.0-beta-1, pacific, atlantic, 1.0-b05/b-06, arctic, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39705) Remove Show More button instead of disabling it

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39705  
 
 
  Remove Show More button instead of disabling it   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 arctic, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39789) API to get all the organizations the user has access to

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39789  
 
 
  API to get all the organizations the user has access to   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38522) Long stage names overflow poorly on stage graph

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38522  
 
 
  Long stage names overflow poorly on stage graph   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 atlantic, arctic, tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40466) Developer wants to see a message when Jenkins is busy eg: execution is blocked waiting for a node

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40466  
 
 
  Developer wants to see a message when Jenkins is busy eg: execution is blocked waiting for a node   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39762) Update application header

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39762  
 
 
  Update application header   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38983) Multibranch pipeline in a folder does not show branch count on dashboard

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38983  
 
 
  Multibranch pipeline in a folder does not show branch count on dashboard   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40487) OPTIMIZATION: Pre-load Run data on fresh load of the Run Details

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40487  
 
 
  OPTIMIZATION: Pre-load Run data on fresh load of the Run Details   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 arctic, tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39842) Open Blue Ocean button should not try to load /activity for a folder

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39842  
 
 
  Open Blue Ocean button should not try to load /activity for a folder   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39658) Include failed step's error to it's log

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39658  
 
 
  Include failed step's error to it's log   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39747) Not all adjunct JavaScript is being coming directly from the browser cache

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39747  
 
 
  Not all adjunct _javascript_ is being coming directly from the browser cache   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39788) API to get all the repositories in an organization

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39788  
 
 
  API to get all the repositories in an organization   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39703) API to read/write a single file from/to the repository

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39703  
 
 
  API to read/write a single file from/to the repository
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39794) API to check that MBP indexing has completed

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39794  
 
 
  API to check that MBP indexing has completed   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-35768) Developer can filter the activity list to a specific branch

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-35768  
 
 
  Developer can filter the activity list to a specific branch   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40434) Pagination for branches and ATH coverage

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40434  
 
 
  Pagination for branches and ATH coverage   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39790) API to create credential from Github access token (and validate)

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39790  
 
 
  API to create credential from Github access token (and validate)   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40617) Handling unsupported inputs

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40617  
 
 
  Handling unsupported inputs   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38982) User would like to have a fast smart search to find jobs from the dashboard

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38982  
 
 
  User would like to have a fast smart search to find jobs from the dashboard   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 atlantic, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39341) Update favourite card design

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39341  
 
 
  Update favourite card design   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38804) API(s) for capturing parameters for parametrised pipeline jobs

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38804  
 
 
  API(s) for capturing parameters for parametrised pipeline jobs   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 indian, arctic, tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40256) Enhancements to form controls

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40256  
 
 
  Enhancements to form controls   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 arctic, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40299) Adapt to the new SCM API for detecting change requests

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40299  
 
 
  Adapt to the new SCM API for detecting change requests   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-37324) We would like a more meaningful description of a step

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37324  
 
 
  We would like a more meaningful description of a step   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-37245) Developer can jump to the run history for a specific branch

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37245  
 
 
  Developer can jump to the run history for a specific branch   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40202) Action buttons are misaligned

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40202  
 
 
  Action buttons are misaligned   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38597) User can create pipeline from Git repository

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38597  
 
 
  User can create pipeline from Git repository   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 pacific, atlantic, indian, arctic, tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40088) JSON serialization should not fail if a plugins action failed to serialize

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40088  
 
 
  JSON serialization should not fail if a plugins action failed to serialize   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38751) Blue Ocean should provide an "escape" link to get back to a classic view of a Pipeline/job

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38751  
 
 
  Blue Ocean should provide an "escape" link to get back to a classic view of a Pipeline/job   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-36975) User should only see the administration link in the header if they are logged in

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-36975  
 
 
  User should only see the administration link in the header if they are logged in
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 1.0-beta-1, 1.0-b05/b-06, arctic, tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40131) "Re-run" button text needs to be translated

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40131  
 
 
  "Re-run" button text needs to be translated   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40137) Open in blue ocean button does not work for runs when the branch name contains a /

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40137  
 
 
  Open in blue ocean button does not work for runs when the branch name contains a /   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38495) Add "waiting for input" state to favourite card

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38495  
 
 
  Add "waiting for input" state to favourite card   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 indian, arctic, tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40163) Baseline shift in breadcrumbs

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40163  
 
 
  Baseline shift in breadcrumbs   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39864) Page title should include build number

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39864  
 
 
  Page title should include build number   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39227) Link plugin dev docs on website

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39227  
 
 
  Link plugin dev docs on website
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 indian, arctic, tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39570) Maven job type's "module" shown on dashboard

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39570  
 
 
  Maven job type's "module" shown on dashboard   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 arctic, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39804) Official Blue Ocean docker container

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39804  
 
 
  Official Blue Ocean docker container   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38598) User can create pipeline from Github repository

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38598  
 
 
  User can create pipeline from Github repository   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 pacific, atlantic, indian, arctic, tasman, frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39763) Update pipeline run header

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39763  
 
 
  Update pipeline run header   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 frank , christmas  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39789) API to get all the organizations the user has access to

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39789  
 
 
  API to get all the organizations the user has access to   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman,  tethys  frank  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39788) API to get all the repositories in an organization

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39788  
 
 
  API to get all the repositories in an organization   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman,  tethys  frank  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39790) API to create credential from Github access token (and validate)

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39790  
 
 
  API to create credential from Github access token (and validate)   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman,  tethys  frank  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-39794) API to check that MBP indexing has completed

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39794  
 
 
  API to check that MBP indexing has completed   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 tasman,  tethys  frank  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40466) Developer wants to see a message when Jenkins is busy eg: execution is blocked waiting for a node

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40466  
 
 
  Developer wants to see a message when Jenkins is busy eg: execution is blocked waiting for a node   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 kraken frank  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40466) Developer wants to see a message when Jenkins is busy eg: execution is blocked waiting for a node

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay assigned an issue to Vivek Pandey  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40466  
 
 
  Developer wants to see a message when Jenkins is busy eg: execution is blocked waiting for a node   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Assignee: 
 Vivek Pandey  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40650) If "withCredentials" and "UsernamePasswordMultiBinding" doesn't specify BOTH a username and password variable,it corrupts other variables

2016-12-22 Thread davidmichaelk...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David Karr created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40650  
 
 
  If "withCredentials" and "UsernamePasswordMultiBinding" doesn't specify BOTH a username and password variable,it corrupts other variables   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 credentials-binding-plugin  
 
 
Created: 
 2016/Dec/23 12:46 AM  
 
 
Environment: 
 Linux  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 David Karr  
 

  
 
 
 
 

 
 I have a block of code like this in my pipeline script: 

 

		withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: JP_MechIdCredentials, usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD']]) {
			println "JP_MechIdPrivateKey[${JP_MechIdPrivateKey}]"
			sshagent (credentials: [JP_MechIdPrivateKey]) {
sh "scp -o StrictHostKeyChecking=no ${javadocJarPath} ${USERNAME}@${JP_JavadocJarHost}:/tmp"
sh "ssh -o StrictHostKeyChecking=no ${USERNAME}@${JP_JavadocJarHost} \"cd  ${JP_JavadocRootRemotePath}; rm -rf ${versionNumber}; mkdir ${versionNumber}\""
sh "ssh -o StrictHostKeyChecking=no ${USERNAME}@${JP_JavadocJarHost} \"cd ${JP_JavadocRootRemotePath}/${versionNumber}; jar xvf /tmp/${baseFileName}\""
			}
		}
 

 Note that I reference the USERNAME, but not the PASSWORD. So, I thought it would be cleaner if I simply removed ", passwordVariable: 'PASSWORD'". This didn't work, and it produced very strange results. The error I got was the following: 

  

[JIRA] (JENKINS-40649) Documentation incomplete regarding Script Content

2016-12-22 Thread htwiz2...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Harry Takata created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40649  
 
 
  Documentation incomplete regarding Script Content
 

  
 
 
 
 

 
Issue Type: 
  Task  
 
 
Assignee: 
 Oleg Nenashev  
 
 
Components: 
 envinject-plugin  
 
 
Created: 
 2016/Dec/23 12:40 AM  
 
 
Environment: 
 Windows host, Jenkins ver. 2.32  Environment Injector Plugin 1.93.1  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Harry Takata  
 

  
 
 
 
 

 
 The documentation located at https://wiki.jenkins-ci.org/display/JENKINS/EnvInject+Plugin is surprisingly sparse when it comes to defining how to set environment variables using a script. Whether it's supposed to output lines like "set myVar=MyValue", just simply set the shell environment variables, or something else, it's definitely not obvious, and the lack of anything resembling an example is disappointing. Can I get some help here?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
  

[JIRA] (JENKINS-40648) Input state isn't updated in activity/branch listing from SSE

2016-12-22 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40648  
 
 
  Input state isn't updated in activity/branch listing from SSE   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 blueocean-plugin  
 
 
Created: 
 2016/Dec/23 12:33 AM  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Michael Neale  
 

  
 
 
 
 

 
 If you have a pipeline running and then open an activity screen for it, and it transitions to input needed state, the state of the row doesn't change to input waiting (it just shows as in-progress).  There is likely a missing event to tell the front end that state has changed... minor thing.   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 
   

[JIRA] (JENKINS-38982) User would like to have a fast smart search to find jobs from the dashboard

2016-12-22 Thread bmacl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Brody Maclean started work on  JENKINS-38982  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Brody Maclean  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38942) Stopped EC2 agents not waking up if the number of stopped EC2 agents equals the global Instance Cap

2016-12-22 Thread timmy.le...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Timmy Leahy edited a comment on  JENKINS-38942  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Stopped EC2 agents not waking up if the number of stopped EC2 agents equals the global Instance Cap   
 

  
 
 
 
 

 
 I'm also experiencing this. We normally bump up against our configured instance cap when rolling out and testing newly provisioned instances. We ran into some delays and just noticed that our job queue kept growing and wasn't waking up any inactive instances. We just updated our configured instance cap and then it started activating instances.  here's a sample from the logs { { code:java} Dec 22, 2016 11:48:38 PM hudson.plugins.ec2.EC2Cloud provisionINFO: Attempting to provision slave from template hudson.plugins.ec2.SlaveTemplate@3f079942 needed by excess workload of 1 units of label 'linux_test'Dec 22, 2016 11:48:38 PM hudson.plugins.ec2.EC2Cloud getNewOrExistingAvailableSlaveINFO: Cannot provision - no capacity for instances: -1Dec 22, 2016 11:48:38 PM hudson.plugins.ec2.EC2Cloud provisionINFO: Attempting provision - finished, excess workload: 1 {code } }   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-38942) Stopped EC2 agents not waking up if the number of stopped EC2 agents equals the global Instance Cap

2016-12-22 Thread timmy.le...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Timmy Leahy commented on  JENKINS-38942  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Stopped EC2 agents not waking up if the number of stopped EC2 agents equals the global Instance Cap   
 

  
 
 
 
 

 
 I'm also experiencing this. We normally bump up against our configured instance cap when rolling out and testing newly provisioned instances. We ran into some delays and just noticed that our job queue kept growing and wasn't waking up any inactive instances. We just updated our configured instance cap and then it started activating instances.  {{Dec 22, 2016 11:48:38 PM hudson.plugins.ec2.EC2Cloud provision INFO: Attempting to provision slave from template hudson.plugins.ec2.SlaveTemplate@3f079942 needed by excess workload of 1 units of label 'linux_test' Dec 22, 2016 11:48:38 PM hudson.plugins.ec2.EC2Cloud getNewOrExistingAvailableSlave INFO: Cannot provision - no capacity for instances: -1 Dec 22, 2016 11:48:38 PM hudson.plugins.ec2.EC2Cloud provision INFO: Attempting provision - finished, excess workload: 1 }}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40647) With Env not working after .10 k8 plugin update

2016-12-22 Thread lars.law...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lars Lawoko created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40647  
 
 
  With Env not working after .10 k8 plugin update   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Carlos Sanchez  
 
 
Components: 
 kubernetes-plugin  
 
 
Created: 
 2016/Dec/23 12:07 AM  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Lars Lawoko  
 

  
 
 
 
 

 
 WithEnv inside a container('x'){} is not working for us, when I did sh 'printenv' none of the variables were in the ENV.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
   

[JIRA] (JENKINS-35768) Developer can filter the activity list to a specific branch

2016-12-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay commented on  JENKINS-35768  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Developer can filter the activity list to a specific branch   
 

  
 
 
 
 

 
 Stephen Connolly most hosting services like Github and Bitbucket have a single default head defined in their repository settings (which is what I am specifically interested in). We can have a fallback to pick one of the multiple heads if that case arises.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-35768) Developer can filter the activity list to a specific branch

2016-12-22 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale commented on  JENKINS-35768  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Developer can filter the activity list to a specific branch   
 

  
 
 
 
 

 
 Also some people want different default branches in Jenkins than they have in github . Or multiple yes. Its not a simple thing sadly.   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40596) 400 upon opening direct link of project in a GitHub organization project

2016-12-22 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale commented on  JENKINS-40596  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: 400 upon opening direct link of project in a GitHub organization project   
 

  
 
 
 
 

 
 Vivek Pandey that error is from stapler - it doesn't even get to executing client code, server just says 400 immediately.. odd.   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-30744) multibranch issues if branch contains /

2016-12-22 Thread gim...@ferrari-electronic.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Thomas Gimpel edited a comment on  JENKINS-30744  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: multibranch issues if branch contains /   
 

  
 
 
 
 

 
 The provided fix does not work on Windows using Visual Studio. The path gets too long, so that VS cannot read/write files in deep directory hierarchies. What is the extra suffix good for? Is it a "path friendly" version of the whole branch name? If so, why not just translate the "/" or other forbidden characters into to a short sequence of valid characters? E.g. {noformat}/{noformat} becomes {noformat}_2f{noformat}, {noformat}%{noformat} becomes {noformat}_25{noformat} and {noformat}_{noformat} becomes {noformat}_5f{noformat}. This is almost the same as the previous solution  {noformat}  " %2f {noformat} " . But when using the underline as escape character no "smart" software like VS or cmd.exe will try to interpret the  {noformat} % {noformat}  character  with all these seen funny results.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-30744) multibranch issues if branch contains /

2016-12-22 Thread gim...@ferrari-electronic.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Thomas Gimpel edited a comment on  JENKINS-30744  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: multibranch issues if branch contains /   
 

  
 
 
 
 

 
 The provided fix does not work on Windows using Visual Studio. The path gets too long, so that VS cannot read/write files in deep directory hierarchies. What is the extra suffix good for? Is it a "path friendly" version of the whole branch name? If so, why not just translate the "/" or other forbidden characters into to a short sequence of valid characters? E.g. { {" noformat} / " {noformat } }  becomes { {" noformat} _2f " {noformat } } , { { noformat} % {noformat } }  becomes { { noformat} _25 {noformat } }  and { { noformat} _ {noformat } }  becomes { { noformat} _5f {noformat } } . This is almost the same as the previous solution { { noformat} %2f {noformat } } . But when using the underline as escape character no "smart" software like VS or cmd.exe will try to interpret the { { noformat} % {noformat } }  with all these seen funny results.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-30744) multibranch issues if branch contains /

2016-12-22 Thread gim...@ferrari-electronic.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Thomas Gimpel edited a comment on  JENKINS-30744  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: multibranch issues if branch contains /   
 

  
 
 
 
 

 
 The provided fix does not work on Windows using Visual Studio. The path gets too long, so that VS cannot read/write files in deep directory hierarchies. What is the extra suffix good for? Is it a "path friendly" version of the whole branch name? If so, why not just translate the "/" or other forbidden characters into to a short sequence of valid characters? E.g.  {{  "/" }}  becomes  {{  " __2f _2f " }} ,  "\\"  {{%}}  becomes  "_5c"  {{_25}}  and  "  {{ _ " }}  becomes  "  {{ _5f " }} . This is almost the same as the previous solution  "  {{ %2f " }} . But when using the underline as escape character no "smart" software like VS or cmd.exe will try to interpret the  "  {{ % " }}  with all these seen funny results.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40646) add support for USC CodeCount (ucc) SLOC tool

2016-12-22 Thread jthorn...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jeff Thornsen updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40646  
 
 
  add support for USC CodeCount (ucc) SLOC tool   
 

  
 
 
 
 

 
Change By: 
 Jeff Thornsen  
 

  
 
 
 
 

 
 Our company utilizes the USC CodeCount (ucc) tool to perform SLOC counts on our code.https://en.wikipedia.org/wiki/Unified_Code_Count_%28UCC%29http://csse.usc.edu/ucc_new/wordpress/This tool is cross-platform and can run natively on both Windows and Linux (and others).  The main advantage it has over other tools is that it supports Logical SLOC as well as Physical SLOC counts for many languages.It outputs results to a collection of CSV files, so I think it would be fairly easy to add support for this to the existing SLOC plugin for Jenkins. I attached a sanitized copy of an example collection of results file, when running ucc with the unified flag.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop 

[JIRA] (JENKINS-30744) multibranch issues if branch contains /

2016-12-22 Thread gim...@ferrari-electronic.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Thomas Gimpel edited a comment on  JENKINS-30744  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: multibranch issues if branch contains /   
 

  
 
 
 
 

 
 The provided fix does not work on Windows using Visual Studio. The path gets too long, so that VS cannot read/write files in deep directory hierarchies. What is the extra suffix good for? Is it a "path friendly" version of the whole branch name? If so, why not just translate the "/" or other forbidden characters into to a short sequence of valid characters? E.g. "/" becomes "__2f", "\ \ " becomes "_5c" and "_" becomes "_5f". This is almost the same as the previous solution "%2f". But when using the underline as escape character no "smart" software like VS or cmd.exe will try to interpret the "%" with all these seen funny results.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-30744) multibranch issues if branch contains /

2016-12-22 Thread gim...@ferrari-electronic.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Thomas Gimpel edited a comment on  JENKINS-30744  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: multibranch issues if branch contains /   
 

  
 
 
 
 

 
 The provided fix does not work on Windows using Visual Studio. The path gets too long, so that VS cannot read/write files in deep directory hierarchies. What is the extra suffix good for? Is it a "path friendly" version of the whole branch name? If so, why not just translate the "/" or other forbidden characters into to a short sequence of valid characters? E.g. "/" becomes " _2f __2f ", "\" becomes "_5c" and "_" becomes "_5f". This is almost the same as the previous solution "%2f". But when using the underline as escape character no "smart" software like VS or cmd.exe will try to interpret the "%" with all these seen funny results.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-40646) add support for USC CodeCount (ucc) SLOC tool

2016-12-22 Thread jthorn...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jeff Thornsen updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40646  
 
 
  add support for USC CodeCount (ucc) SLOC tool   
 

  
 
 
 
 

 
Change By: 
 Jeff Thornsen  
 
 
Attachment: 
 outfile_summary.csv  
 
 
Attachment: 
 TOTAL_outfile.csv  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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-30744) multibranch issues if branch contains /

2016-12-22 Thread gim...@ferrari-electronic.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Thomas Gimpel reopened an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 The provided fix does not work on Windows using Visual Studio. The path gets too long, so that VS cannot read/write files in deep directory hierarchies. What is the extra suffix good for? Is it a "path friendly" version of the whole branch name? If so, why not just translate the "/" or other forbidden characters into to a short sequence of valid characters? E.g. "/" becomes "2f", "\" becomes "_5c" and "" becomes "_5f". This is almost the same as the previous solution "%2f". But when using the underline as escape character no "smart" software like VS or cmd.exe will try to interpret the "%" with all these seen funny results.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-30744  
 
 
  multibranch issues if branch contains /   
 

  
 
 
 
 

 
Change By: 
 Thomas Gimpel  
 
 
Resolution: 
 Fixed  
 
 
Status: 
 Resolved Reopened  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
  

[JIRA] (JENKINS-40646) add support for USC CodeCount (ucc) SLOC tool

2016-12-22 Thread jthorn...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jeff Thornsen created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40646  
 
 
  add support for USC CodeCount (ucc) SLOC tool   
 

  
 
 
 
 

 
Issue Type: 
  New Feature  
 
 
Assignee: 
 npiguet  
 
 
Components: 
 sloccount-plugin  
 
 
Created: 
 2016/Dec/22 10:42 PM  
 
 
Labels: 
 plugin  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Jeff Thornsen  
 

  
 
 
 
 

 
 Our company utilizes the USC CodeCount (ucc) tool to perform SLOC counts on our code. https://en.wikipedia.org/wiki/Unified_Code_Count_%28UCC%29 http://csse.usc.edu/ucc_new/wordpress/ This tool is cross-platform and can run natively on both Windows and Linux (and others). The main advantage it has over other tools is that it supports Logical SLOC as well as Physical SLOC counts for many languages. It outputs results to a collection of CSV files, so I think it would be fairly easy to add support for this to the existing SLOC plugin for Jenkins.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  

[JIRA] (JENKINS-40596) 400 upon opening direct link of project in a GitHub organization project

2016-12-22 Thread cmey...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Cliff Meyers commented on  JENKINS-40596  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: 400 upon opening direct link of project in a GitHub organization project   
 

  
 
 
 
 

 
 So apparently any request that makes it to the server with "%2F" in the URL will bomb out. Perhaps this a core Stapler issue? For example this request yields a 400 response as well: http://jenkins.inspectit.rocks/blue/%2F/  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





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


  1   2   3   4   >