[JIRA] (JENKINS-42763) Env var HOME for containers has regressed

2017-03-20 Thread parag.doke+tec...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Parag Doke commented on  JENKINS-42763  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Env var HOME for containers has regressed   
 

  
 
 
 
 

 
 I think inheriting from a template is a workaround. Why make it mandatory for everyone to: 1) Have an invalid HOME 2) Else inherit from a template If their kube cluster is not on OpenShift. I think we need to fix this the right way ... which should be to add an optional param (ensure HOME is valid ... or something to that effect). I wish I were better at development ... would make an attempt and raise a PR myself.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-40825) "Pipe not connected" errors when running multiple builds simultaneously

2017-03-20 Thread jr...@vendasta.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Redl commented on  JENKINS-40825  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: "Pipe not connected" errors when running multiple builds simultaneously   
 

  
 
 
 
 

 
 Lars Lawoko thanks so much for posting the work around. I was about to throw the towel in on Jenkins today and this saved me.  For reference to others, rather than pulling directly from the office jenkinsci images I brought in the relevant bits from the published docker files: 
 
https://github.com/jenkinsci/docker-slave 
 
 
https://github.com/jenkinsci/docker-jnlp-slave 
 Another win for this workaround is that by dropping the container block you also cut out all of the noise being generated from: https://issues.jenkins-ci.org/browse/JENKINS-42048 

 

Jenkins 2.51
Kubernetes plugin 0.11 
Kubernetes 1.5.3 on GKE 

    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-42954) Jenkins unable to operate SonarQube block

2017-03-20 Thread ia...@il.ibm.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Idan Adar created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42954  
 
 
  Jenkins unable to operate SonarQube block   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Sonar Team  
 
 
Components: 
 sonar  
 
 
Created: 
 2017/Mar/21 4:49 AM  
 
 
Environment: 
 Jenkins 2.48  Linux (CentOS)  SonarQube 6.2  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Idan Adar  
 

  
 
 
 
 

 
 (Based on: https://stackoverflow.com/questions/42909439/using-waitforqualitygate-in-a-jenkins-declarative-pipeline)   It appears that stage like these are not possible? stage ("SonarQube analysis") { steps { script { STAGE_NAME = "SonarQube analysis"  if (BRANCH_NAME == "develop")  { echo "In 'develop' branch, don't analyze." }  else { // this is a PR build, run sonar analysis withSonarQubeEnv("SonarGate")  { sh "../../../sonar-scanner-2.9.0.670/bin/sonar-scanner" }  } } } }  stage ("SonarQube Gatekeeper") { steps { script { STAGE_NAME = "SonarQube Gatekeeper"  if (BRANCH_NAME == "develop")  { echo "In 'develop' branch, skip." }  else { // this is a PR build, fail on threshold spill def qualitygate = waitForQualityGate() if (qualitygate.status != "OK") { error "Pipeline aborted due to quality gate coverage failure: $ {qualitygate.status} " }  } } } }  It fails with: "Please use the 'withSonarQubeEnv' wrapper to run your analysis.", but I am using it... Jenkins does not recognize it? full logs in the question link above.  
 

  
 
 
 
 

 
 
 

[JIRA] (JENKINS-42937) Massive slowdown of pipeline execution when making massive use of parallel

2017-03-20 Thread svano...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Sam Van Oort edited a comment on  JENKINS-42937  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Massive slowdown of pipeline execution when making massive use of parallel   
 

  
 
 
 
 

 
 It's a bit more complex than that, because it actually has to do with the graph heads structure vs. the iteration behavior.  Essentially we can walk back to the beginning of the directed-acyclic flow graph multiple times for parallels.  This gives  ~  O(m*n) performance for each BlockStartNode checked, where m is the number of nodes previously run, and n is the number of branches, assuming each branch is an equal number of nodes long.  This version removes that behavior, which should greatly improve performance with many parallels.  In theory it is still far from optimal, because we *could* simply store the hierarchy of inclosing blocks in memory while running a flow, reducing an O(m) scan to O(d) where d is depth (linear check) or O(1) if a hashset is used to store enclosing blocks.  However in practice any of that would require some very significant internal changes, and copyLogs is slated to disappear in the future.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42937) Massive slowdown of pipeline execution when making massive use of parallel

2017-03-20 Thread svano...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Sam Van Oort commented on  JENKINS-42937  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Massive slowdown of pipeline execution when making massive use of parallel   
 

  
 
 
 
 

 
 It's a bit more complex than that, because it actually has to do with the graph heads structure vs. the iteration behavior.  Essentially we can walk back to the beginning of the directed-acyclic flow graph multiple times for parallels.  This gives O(m*n) performance for each BlockStartNode checked, where m is the number of nodes previously run, and n is the number of branches, assuming each branch is an equal number of nodes long.   This version removes that behavior, which should greatly improve performance with many parallels.  In theory it is still far from optimal, because we could simply store the hierarchy of inclosing blocks in memory while running a flow, reducing an O(m) scan to O(d) where d is depth (linear check) or O(1) if a hashset is used to store enclosing blocks.  However in practice any of that would require some very significant internal changes, and copyLogs is slated to disappear in the future.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42937) Massive slowdown of pipeline execution when making massive use of parallel

2017-03-20 Thread svano...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Sam Van Oort started work on  JENKINS-42937  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Sam Van Oort  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42937) Massive slowdown of pipeline execution when making massive use of parallel

2017-03-20 Thread svano...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Sam Van Oort assigned an issue to Sam Van Oort  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42937  
 
 
  Massive slowdown of pipeline execution when making massive use of parallel   
 

  
 
 
 
 

 
Change By: 
 Sam Van Oort  
 
 
Assignee: 
 Sam Van Oort  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42522) Metadata plugin deletes old data on startup

2017-03-20 Thread abrid...@blackberry.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tony Bridges assigned an issue to recampbell  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42522  
 
 
  Metadata plugin deletes old data on startup   
 

  
 
 
 
 

 
Change By: 
 Tony Bridges  
 
 
Assignee: 
 rsandell recampbell  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42522) Metadata plugin deletes old data on startup

2017-03-20 Thread abrid...@blackberry.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tony Bridges commented on  JENKINS-42522  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Metadata plugin deletes old data on startup   
 

  
 
 
 
 

 
 I hit this issue during an upgrade.  To reproduce : 1. configure the use of a plugin in a job.  Call this CanaryPlugin 2. Verify the presence of the CanaryPlugin configuration in XML.  3. Delete the CanaryPlugin that added this data from the file system 4. Upgrade the metadata plugin. 5. Restart. On startup, the MD plugin upgrade causes the job configuration to be resaved, effectively deleting the configuration for the CanaryPlugin from all jobs.   I ran into this problem when attempting a manual sync of plugins between two systems.  The tool used to seed the plugins did not handle internally developed plugins, and the first attempt to restart the system after the upgrade caused the configuration for all internal plugins to be stripped. The expectation here was that the "missing plugin" error could be addressed post restart by restoring the missing plugins, and restarting again.    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42522) Metadata plugin deletes old data on startup

2017-03-20 Thread abrid...@blackberry.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tony Bridges reopened an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42522  
 
 
  Metadata plugin deletes old data on startup   
 

  
 
 
 
 

 
Change By: 
 Tony Bridges  
 
 
Resolution: 
 Incomplete  
 
 
Status: 
 Closed Reopened  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42953) Investigate moving ATH validation inside main pipeline for blueocean-plugin

2017-03-20 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42953  
 
 
  Investigate moving ATH validation inside main pipeline for blueocean-plugin   
 

  
 
 
 
 

 
Issue Type: 
  Improvement  
 
 
Assignee: 
 Ivan Meredith  
 
 
Components: 
 blueocean-plugin  
 
 
Created: 
 2017/Mar/21 2:58 AM  
 
 
Labels: 
 technical-debt  
 
 
Priority: 
  Major  
 
 
Reporter: 
 Michael Neale  
 

  
 
 
 
 

 
 It would make sense to have a Jenkinsfile.ath in blue ocean, or top level dir, that can be setup as a separate pipeline project to provide othorgonal validation per pull requests, vs the ATH being a separate codebase and pipeline.       
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
   

[JIRA] (JENKINS-42952) Make currentBuild.duration more meaningful and add string equivalent

2017-03-20 Thread andrew.ba...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Andrew Bayer commented on  JENKINS-42952  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Make currentBuild.duration more meaningful and add string equivalent   
 

  
 
 
 
 

 
 PR up at https://github.com/jenkinsci/workflow-support-plugin/pull/33  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42952) Make currentBuild.duration more meaningful and add string equivalent

2017-03-20 Thread andrew.ba...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Andrew Bayer updated  JENKINS-42952  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42952  
 
 
  Make currentBuild.duration more meaningful and add string equivalent   
 

  
 
 
 
 

 
Change By: 
 Andrew Bayer  
 
 
Status: 
 In  Progress  Review  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42952) Make currentBuild.duration more meaningful and add string equivalent

2017-03-20 Thread andrew.ba...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Andrew Bayer started work on  JENKINS-42952  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Andrew Bayer  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42952) Make currentBuild.duration more meaningful and add string equivalent

2017-03-20 Thread andrew.ba...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Andrew Bayer created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42952  
 
 
  Make currentBuild.duration more meaningful and add string equivalent   
 

  
 
 
 
 

 
Issue Type: 
  Task  
 
 
Assignee: 
 Andrew Bayer  
 
 
Components: 
 workflow-support-plugin  
 
 
Created: 
 2017/Mar/21 1:11 AM  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Andrew Bayer  
 

  
 
 
 
 

 
 currentBuild.duration always returns 0, since Run.duration is 0 until the run completes. So we should switch currentBuild.duration to return System.currentTimeMillis() - currentBuild.startTimeInMillis and add currentBuild.durationString, calling Run.getDurationString().  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

[JIRA] (JENKINS-42868) The dropdown indicator for the branch filter looks like a wifi signal indicator

2017-03-20 Thread bmacl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Brody Maclean commented on  JENKINS-42868  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: The dropdown indicator for the branch filter looks like a wifi signal indicator   
 

  
 
 
 
 

 
 Daniel Beck in the short term, we're sticking with the Material icon set, but once we have the time and space we'll address this. https://material.io/icons/#ic_filter_list  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42868) The dropdown indicator for the branch filter looks like a wifi signal indicator

2017-03-20 Thread bmacl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Brody Maclean closed an issue as Won't Do  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42868  
 
 
  The dropdown indicator for the branch filter looks like a wifi signal indicator   
 

  
 
 
 
 

 
Change By: 
 Brody Maclean  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Won't Do  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-41526) "Filter for Poll SCM" detects changes on similarly named folders

2017-03-20 Thread zero...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Timothy Williams closed an issue as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Verified appending * to polling folder path resolved this issue. Verified with version 0.7.11.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-41526  
 
 
  "Filter for Poll SCM" detects changes on similarly named folders   
 

  
 
 
 
 

 
Change By: 
 Timothy Williams  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-42135) Pipeline Creation last steps

2017-03-20 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42135  
 
 
  Pipeline Creation last steps   
 

  
 
 
 
 

 
Change By: 
 Michael Neale  
 
 
Priority: 
 Blocker Critical  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-35370) Workflow shell step ERROR: script returned exit code -1

2017-03-20 Thread rodr...@freebsd.org (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Craig Rodrigues commented on  JENKINS-35370  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Workflow shell step ERROR: script returned exit code -1   
 

  
 
 
 
 

 
 I'm also using: 
 
Jenkins 2.51 
Pipeline 2.5 
Durable task plugin 1.13 
Docker pipeline 1.10 
  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-35370) Workflow shell step ERROR: script returned exit code -1

2017-03-20 Thread rodr...@freebsd.org (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Craig Rodrigues reopened an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 I have been having the same problems as Ben Mathews with the shell script returning -1 if it is run inside a docker.inside block in a pipeline. I took Ben's testcase here: https://issues.jenkins-ci.org/browse/JENKINS-35370?focusedCommentId=275803=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-275803 and could reproduce the problem.   The environment I used to reproduce the problem was: 
 
host environment was a VM running Debian stretch 
docker version:Client: 
  Version:      1.13.1  API version:  1.26  Go version:   go1.7.5  Git commit:   092cba372  Built:        Wed Feb  8 06:44:30 2017  OS/Arch:      linux/amd64   Server:  Version:      1.13.1  API version:  1.26 (minimum version 1.12)  Go version:   go1.7.5 Git commit:   092cba372 Built:        Wed Feb  8 06:44:30 2017 OS/Arch:      linux/amd64 So the host environment, and the docker container are on the same machine and sharing the same file system.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-35370  
 
 
  Workflow shell step ERROR: script returned exit code -1   
 

  
 
 
 
 

 
Change By: 
 Craig Rodrigues  
 
 
Resolution: 
 Incomplete  
 
 
Status: 
 Resolved Reopened  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 

[JIRA] (JENKINS-42135) Pipeline Creation last steps

2017-03-20 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42135  
 
 
  Pipeline Creation last steps   
 

  
 
 
 
 

 
Change By: 
 Michael Neale  
 

  
 
 
 
 

 
 * There are a few gaps with how creation is handled now:* *(repeating from link below):*   * When creating github pipeline, no description text is needed. Should just go from "Creating pipeline" to "Completed" (short delay) then automatically take them to activity screen * In  case of single github pipeline (like above) - "Creating Pipeline..." while it is scanning. If none are found, then say "there are no Jenkinsfiles in $REPO" with the create pipeline button (and again, no description text)  * Auto discover - the wording needs changes:  * Never say anything about creating "organizations" ** "Discovering Pipelines..." is sufficient ** No description text for this step * When going into final state ** Title: "No Jenkinsfiles found in any of your repositories" ** Body: "A Jenkinsfile is stored in your repository and describes how your Pipeline will run – [Learn more|https://jenkins.io/doc/]" *** Learn more opens in new window ** Action: "Check again" *** This runs the rescan again without leaving this page  * Auto discover - also again no description text. Just "Discovering Pipelines..." and then  "Discovered X pipelines" and then a delay, redirect to dashboard * When creating *git* and there are no branches - go to activity screen where empty state will tell them what to do (vs show a button).  *In  Scope**  [  https://cloudbees.atlassian.net/wiki/x/l2LRBQ ] * Some of these use cases may be covered by other stories and its likely we need to break this down further.*Notes** It would be prudent to wait until  -  JENKINS-41966 -  is mostly working before we pick this up* Unfortunately the Jenkins wiki is so old it would take me 100 years to create a good page about this work, so I have to link to a CloudBees internal page (sorry everyone else). Drop a comment here and I can see if I can get it copied across if you need it.op  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  

[JIRA] (JENKINS-42939) AccuRev plugin does not start job on detected changes

2017-03-20 Thread zero...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Timothy Williams closed an issue as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Verified appending * to polling folder path resolved this issue.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-42939  
 
 
  AccuRev plugin does not start job on detected changes   
 

  
 
 
 
 

 
Change By: 
 Timothy Williams  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-42939) AccuRev plugin does not start job on detected changes

2017-03-20 Thread zero...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Timothy Williams commented on  JENKINS-42939  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: AccuRev plugin does not start job on detected changes   
 

  
 
 
 
 

 
 Thanks Joseph, that's what I thought - just wanted to be sure   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-39331) Changelog missing from v1.6.3 to v1.7 on wiki

2017-03-20 Thread co...@colinharrington.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Colin Harrington resolved as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Added the 1.7 release and release notes to the wiki https://wiki.jenkins-ci.org/display/JENKINS/Grails+Plugin https://github.com/jenkinsci/grails-plugin/compare/grails-1.6.3...grails-1.7  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-39331  
 
 
  Changelog missing from v1.6.3 to v1.7 on wiki   
 

  
 
 
 
 

 
Change By: 
 Colin Harrington  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-39331) Changelog missing from v1.6.3 to v1.7 on wiki

2017-03-20 Thread co...@colinharrington.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Colin Harrington assigned an issue to Colin Harrington  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-39331  
 
 
  Changelog missing from v1.6.3 to v1.7 on wiki   
 

  
 
 
 
 

 
Change By: 
 Colin Harrington  
 
 
Assignee: 
 jeffg2one Colin Harrington  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42901) Blue Ocean dashboard should be more "activity" like

2017-03-20 Thread db...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck commented on  JENKINS-42901  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Blue Ocean dashboard should be more "activity" like   
 

  
 
 
 
 

 
 Maybe, not sure. Note that this is about the top level projects rather than individual builds (which would be far too cluttered on any real instance).  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42871) Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay commented on  JENKINS-42871  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input   
 

  
 
 
 
 

 
 Jan Koval thanks for that. I think JENKINS-42451 could be related in solving this problem. I have earmarked this issue and JENKINS-42451 for a future sprint.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42871) Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42871  
 
 
  Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Priority: 
 Minor Critical  
 
 
Sprint: 
 Blue Ocean 1.1  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-40967) Open Blue Ocean link($JENKINS_URL/blue) does not move if the search bar or login name become too big

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay resolved as Duplicate  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40967  
 
 
  Open Blue Ocean link($JENKINS_URL/blue) does not move if the search bar or login name become too big   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Duplicate  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42901) Blue Ocean dashboard should be more "activity" like

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay commented on  JENKINS-42901  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Blue Ocean dashboard should be more "activity" like   
 

  
 
 
 
 

 
 Daniel Beck thanks for filing this. We are looking at introducing a global "Activity" area that would show all the latest runs of a Pipeline including actively queued or executing runs (similar to the Pipeline "Activity"). This could introduce additional ways to filter the activity to get the information you are looking for. Would this align similarity with any of your use cases?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42853) NPE on Virtual Machine Size when selecting Azure template

2017-03-20 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-42853  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: NPE on Virtual Machine Size when selecting Azure template   
 

  
 
 
 
 

 
 Code changed in jenkins User: Claudiu Guiman Path: src/main/java/com/microsoft/azure/vmagent/AzureVMAgentTemplate.java src/main/java/com/microsoft/azure/vmagent/AzureVMManagementServiceDelegate.java http://jenkins-ci.org/commit/azure-vm-agents-plugin/6dd8a285a699a097ffa264698a3a606ce94ad250 Log: Provide default vm size list when the region was not yet selected [FIXED JENKINS-42853]  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42853) NPE on Virtual Machine Size when selecting Azure template

2017-03-20 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon resolved as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42853  
 
 
  NPE on Virtual Machine Size when selecting Azure template   
 

  
 
 
 
 

 
Change By: 
 SCM/JIRA link daemon  
 
 
Status: 
 In Progress Resolved  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42217) Post-build-email directs to all-changes page instead of detailed build ID page

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay resolved as Cannot Reproduce  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Closing this one due to a lack of response. Ben Ruopp if you wish to reopen this please feel free   
 

  
 
 
 
 

 
 Jenkins /  JENKINS-42217  
 
 
  Post-build-email directs to all-changes page instead of detailed build ID page   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Cannot Reproduce  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-42417) Skipped tests should not use "unstable" coloring

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42417  
 
 
  Skipped tests should not use "unstable" coloring   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 1.0, Blue Ocean 1. 0-rc2 1  
 

  
 
 
 
 

 
 *Scope** Change skipped tests to use the "not built" style and status indicator instead of the yellow "unstable" style and status indicator *Original request* In an unstable build, there can be - failed tests- skipped testsThe skipped tests are the same color and icon as the overall build (orange and ! ) while the tests that actually made the build unstable are red and x. This makes no sense, as it implies a relationship between build status and skipped tests that's just not there.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-42417) Skipped tests should not use "unstable" coloring

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42417  
 
 
  Skipped tests should not use "unstable" coloring   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Summary: 
 Inconsistent presentation for Skipped tests should not use "  unstable  builds " coloring  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-41651) Collapse folders

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay resolved as Postponed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 We don't aim to replicate the Folders functionality at this time in Blue Ocean. We are looking at other ways that will make it easy to find and organize your jobs, such as fast search (JENKINS-38982).  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-41651  
 
 
  Collapse folders   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Postponed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-41426) EC2- Keeps sending stop signal to a manually stopped instance

2017-03-20 Thread luigi.tagliamont...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Luigi Tagliamonte edited a comment on  JENKINS-41426  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: EC2- Keeps sending stop signal to a manually stopped instance   
 

  
 
 
 
 

 
 Hello there,I have the same problem and I think that for stopped or disconnected computers (Jenkins slaves nodes) the internal check function [ https://github.com/jenkinsci/ec2-plugin/blob/master/src/main/java/hudson/plugins/ec2/EC2RetentionStrategy.java#L92 ] should not be executed or, if it is like that by design (I'm not a Jenkins expert) you should return 1 at the beginning of the function and avoid to do all the math and re-send a stop request.If my analysis  if  of  the issue is correct I will be happy to open a PR.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42871) Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input

2017-03-20 Thread koval....@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jan Koval commented on  JENKINS-42871  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input   
 

  
 
 
 
 

 
 Yes that is the problem. Workaround is to switch to classic view and fire the build.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42871) Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay commented on  JENKINS-42871  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input   
 

  
 
 
 
 

 
 Jan Koval just to clarify, is the issue here is that once a Pipeline branch is paused for input that you cannot run the branch again from the Branches tab?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42951) Local-part based user mapping results in cofused changelogs

2017-03-20 Thread db...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42951  
 
 
  Local-part based user mapping results in cofused changelogs   
 

  
 
 
 
 

 
Change By: 
 Daniel Beck  
 

  
 
 
 
 

 
 This is a followup to SECURITY-372 (https://jenkins.io/security/advisory/2017-03-20/#emails-were-sent-to-addresses-not-associated-with-actual-users-of-jenkins-by-mailer-plugin-and-email-extension-plugin) The A big part of the  problem  (emails sent to people completely unrelated to what was built)  came from the fact that Git plugin tries to map Git users to Jenkins users via the local-part of email addresses.This may be a sensible approach in an organization with their own domain and mail server, where everyone is first.last@organization, but outside that narrow situation, it is not. noreply@whatever, github@whatever, info@whatever, the list goes on. Combine with a Jenkins instance building open source projects from various organizations, and you'll  Jenkins sending emails to completely wrong people. Now with this issue fixed in the email plugins, what's left is, AFAIUI, a confused changelog inside Jenkins.Maybe make the option to use email addresses as ID the default, or do a more sophisticated mapping?CC [~ydubreuil] who may be able to fill in some details as he analyzed the problem.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   

[JIRA] (JENKINS-42951) Local-part based user mapping results in cofused changelogs

2017-03-20 Thread db...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Beck created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42951  
 
 
  Local-part based user mapping results in cofused changelogs   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Mark Waite  
 
 
Components: 
 git-plugin  
 
 
Created: 
 2017/Mar/20 10:48 PM  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Daniel Beck  
 

  
 
 
 
 

 
 This is a followup to SECURITY-372 (https://jenkins.io/security/advisory/2017-03-20/#emails-were-sent-to-addresses-not-associated-with-actual-users-of-jenkins-by-mailer-plugin-and-email-extension-plugin) The problem came from the fact that Git plugin tries to map Git users to Jenkins users via the local-part of email addresses. This may be a sensible approach in an organization with their own domain and mail server, where everyone is first.last@organization, but outside that narrow situation, it is not. noreply@whatever, github@whatever, info@whatever, the list goes on. Combine with a Jenkins instance building open source projects from various organizations, and you'll Jenkins sending emails to completely wrong people. Now with this issue fixed in the email plugins, what's left is, AFAIUI, a confused changelog inside Jenkins. Maybe make the option to use email addresses as ID the default, or do a more sophisticated mapping? CC Yoann Dubreuil who may be able to fill in some details as he analyzed the problem.  
 

  
 
 
 
 

 
 
 

 
 
   

[JIRA] (JENKINS-42871) Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42871  
 
 
  Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 

  
 
 
 
 

 
 *Problem*Unable to re-run branch job when there is other running job from same branch waiting for user input.*Usecase*Pipeline allows user to vote if branch build shoud be deployed to server.Voting is preformed through input step which pauses running pipeline job. In this case the blueocean does not show run button which fires another pipeline job from same branch.*Screenshot* !multibranch-blueocean.png!!singlebranch-pipeline.png!  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42871) Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42871  
 
 
  Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 

  
 
 
 
 

 
 *Problem* Unable to re-run branch job when there is other running job from same branch waiting for user input. The use case: *Usecase*  Pipe line Pipeline  allows user to vote if branch build shoud be deployed to server.Voting is preformed through input step which pauses running pipeline job. In this case the blueocean does not show run button which fires another pipeline job from same branch. See attachments: *Screenshot*  multibranch vs single branch pipeline jobs    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-42871) Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42871  
 
 
  Multibranch pipeline - unable to re-run branch job when there is other running job waiting for user input   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 

  
 
 
 
 

 
 *Problem*Unable to re-run branch job when there is other running job from same branch waiting for user input.*Usecase*Pipeline allows user to vote if branch build shoud be deployed to server.Voting is preformed through input step which pauses running pipeline job. In this case the blueocean does not show run button which fires another pipeline job from same branch.*Screenshot*    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42274) Block Blue Ocean UI if security is disabled

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42274  
 
 
  Block Blue Ocean UI if security is disabled   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 

  
 
 
 
 

 
 *Context*Many features, such as personalization and creation, do not work if there is no user identity. It is also a security anti-pattern for Jenkins not to have security enabled.We should display a full screen message that lets the user know this is an unsupported configuration. This message should be dismissible.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42274) Block Blue Ocean UI if security is disabled

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42274  
 
 
  Block Blue Ocean UI if security is disabled   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 Blue Ocean 1.1  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42624) Custom title for build steps

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay commented on  JENKINS-42624  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Custom title for build steps   
 

  
 
 
 
 

 
 Yanis LISIMA I'd prefer to see if JENKINS-37324 resolves most peoples problems before we allow this level of customisability for individual steps. I can see how this could be useful but I think the demands on the syntax make it somewhat of a advanced feature. I will re-evaluate this when we've had JENKINS-37324 out in a release for a few months.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42624) Custom title for build steps

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay resolved as Postponed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42624  
 
 
  Custom title for build steps   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 Reopened Resolved  
 
 
Resolution: 
 Postponed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42939) AccuRev plugin does not start job on detected changes

2017-03-20 Thread joseph...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Joseph Petersen commented on  JENKINS-42939  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: AccuRev plugin does not start job on detected changes   
 

  
 
 
 
 

 
 If you want to avoid hi-analytics-library also starting hi-analytics-library-web then you need the /*   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42929) Stopping a freestyle job will sometimes fail

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42929  
 
 
  Stopping a freestyle job will sometimes fail   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 

  
 
 
 
 

 
 *Notes*I suspect that there is a race condition between the run being queued and then it no longer being in the queue (backend makes a very academic distinction between runs that are executing and are queued). We need to handle this situation gracefully. *Original request* Steps to reproduce the bug (see video [here|https://drive.google.com/open?id=0B8uklOZI9kkqak1VZ1Jwd3J1SVE]): * Create a freestyle job in classic with a bash sleep 10 in it * Go to its BO version * Click on Run several times to have jobs queued * Try to stop one of the queued ones * Sometimes on stop there is a JS error and the job is not removed{code}DELETE [http://ec2-52-200-141-179.compute-1.amazonaws.com:8080/blue/rest/organizations/jenkins/pipelines/isa/queue/578/] 404 (Not Found) request @ blueocean.js:2602 dedupe @ blueocean.js:7854 dedupe @ blueocean.js:7877 rawFetch @ blueocean.js:2620 fetch @ blueocean.js:2695 removeFromQueue @ blueocean.js:5026 _onStopClick @ blueocean.js:1944 onClick @ blueocean.js:2020 invokeGuardedCallback @ blueocean.js:88000 executeDispatch @ blueocean.js:80124 executeDispatchesInOrder @ blueocean.js:80144 executeDispatchesAndRelease @ blueocean.js:79601 executeDispatchesAndReleaseTopLevel @ blueocean.js:79612 forEachAccumulated @ blueocean.js:94269 processEventQueue @ blueocean.js:79788 runEventQueueInBatch @ blueocean.js:88058 handleTopLevel @ blueocean.js:88069 handleTopLevelImpl @ blueocean.js:88136 perform @ blueocean.js:93653 batchedUpdates @ blueocean.js:87336 batchedUpdates @ blueocean.js:91552 dispatchEvent @ blueocean.js:88213{code}When reloading the page the builds we were trying to stop are either stopped or completed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
   

[JIRA] (JENKINS-42929) Stopping a freestyle job will sometimes fail

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42929  
 
 
  Stopping a freestyle job will sometimes fail   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 Blue Ocean 1.1  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42929) Stopping a freestyle job will sometimes fail

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42929  
 
 
  Stopping a freestyle job will sometimes fail   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Summary: 
 DELETE http://ec2-52-200-141-179.compute-1.amazonaws.com:8080/blue/rest/organizations/jenkins/pipelines/isa/queue/578/ 404 (Not Found) when trying to stop Stopping  a  queued build  freestyle job will sometimes fail  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42924) Favourite pipelines working oddly when there is no default branch to favourite

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42924  
 
 
  Favourite pipelines working oddly when there is no default branch to favourite   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 Blue Ocean 1.1  
 

  
 
 
 
 

 
 If favouriting fails the state of the favourite should not be favourited. *Steps to reproduce (see [video|https://drive.google.com/file/d/0B8uklOZI9kkqNmx1dUUxRUlsQ28/view] with reproducible steps)*: * Go to [/|http://ec2-52-200-141-179.compute-1.amazonaws.com:8080/]blue * Star the hudson pipeline (or a pipeline that has no master to favorite) → you will get an error saying that there is an error starring this pipeline because there is no master. But the pipeline is starred when it shouldn't * Then star another pipeline successfully. The pipeline before gets unstarred  * Refreshing the screen will show the failed favourite as unfavourited  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 
  

[JIRA] (JENKINS-42925) Navigating to a folder results in an empty screen

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42925  
 
 
  Navigating to a folder results in an empty screen   
 

  
 
 
 
 

 
 Cliff Meyers I think we should just get it to redirect to the dashboard for the time being.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42925) Navigating to a folder results in an empty screen

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42925  
 
 
  Navigating to a folder results in an empty screen   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 Blue Ocean 1.1  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42925) Navigating to a folder results in an empty screen

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42925  
 
 
  Navigating to a folder results in an empty screen   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Summary: 
 Error fetching page: Not found at checkstatus Navigating to a folder results in an empty screen  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42942) REGRESSION: status symbol of favorites get cut off

2017-03-20 Thread jmcdon...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Josh McDonald commented on  JENKINS-42942  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: REGRESSION: status symbol of favorites get cut off   
 

  
 
 
 
 

 
 

In smaller resolution
   Not sure what this means?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42932) REGRESSION detail view log links for steps only are broken

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42932  
 
 
  REGRESSION detail view log links for steps only are broken   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Priority: 
 Minor Critical  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42932) REGRESSION detail view log links for steps only are broken

2017-03-20 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42932  
 
 
  REGRESSION detail view log links for steps only are broken   
 

  
 
 
 
 

 
Change By: 
 Michael Neale  
 

  
 
 
 
 

 
 Go to [https://ci.blueocean.io/blue/organizations/jenkins/blueocean/detail/master/797/pipeline/] Press either log button both lead to 404 urls  [ https://ci.blueocean.io/blue/rest/organizations/jenkins/pipelines/blueocean/branches/master/runs/797/nodes/undefined/log/?start=0 ]  See the 'undefined' in the path that is because{code:java}const logUrl = shouldShowCV ? logGeneral.url : `${nodeKey}${this.mergedConfig.node}/log/`;{code}only works if there is a node.  Expected behavior: should default to showing full log in these cases (ie no steps).    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-42932) REGRESSION detail view log links for steps only are broken

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay assigned an issue to Ivan Meredith  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42932  
 
 
  REGRESSION detail view log links for steps only are broken   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Assignee: 
 Ivan Meredith  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42920) Developer should see error message for failed input step

2017-03-20 Thread i...@ivan.net.nz (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ivan Meredith stopped work on  JENKINS-42920  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Ivan Meredith  
 
 
Status: 
 In Progress Open  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42932) REGRESSION detail view log links for steps only are broken

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42932  
 
 
  REGRESSION detail view log links for steps only are broken   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 

  
 
 
 
 

 
 Go to [https://ci.blueocean.io/blue/organizations/jenkins/blueocean/detail/master/797/pipeline/] Press either log button both lead to 404 urls  [ https://ci.blueocean.io/blue/rest/organizations/jenkins/pipelines/blueocean/branches/master/runs/797/nodes/undefined/log/?start=0 ]  See the 'undefined' in the path that is because{code:java}const logUrl = shouldShowCV ? logGeneral.url : `${nodeKey}${this.mergedConfig.node}/log/`;{code}only works if there is a node.  Expected behavior: should default to showing full log in these cases (ie no steps).    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42867) Repeatedly updating the branch filter to the same value creates browser navigatione entries

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42867  
 
 
  Repeatedly updating the branch filter to the same value creates browser navigatione entries   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 Blue Ocean 1.0-rc2  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42942) REGRESSION: status symbol of favorites get cut off

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42942  
 
 
  REGRESSION: status symbol of favorites get cut off   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Summary: 
 REGRESSION: status symbol of favorites get cut  of  off  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42867) Repeatedly updating the branch filter to the same value creates browser navigatione entries

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42867  
 
 
  Repeatedly updating the branch filter to the same value creates browser navigatione entries   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 Blue Ocean 1.1  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42942) REGRESSION: status symbol of favorites get cut off

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay assigned an issue to Josh McDonald  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42942  
 
 
  REGRESSION: status symbol of favorites get cut off   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Priority: 
 Minor Critical  
 
 
Assignee: 
 Josh McDonald  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42932) REGRESSION detail view log links for steps only are broken

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42932  
 
 
  REGRESSION detail view log links for steps only are broken   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 Blue Ocean 1.0-rc2  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42942) REGRESSION: status symbol of favorites get cut of

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42942  
 
 
  REGRESSION: status symbol of favorites get cut of   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 Blue Ocean 1.0-rc2  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42925) Error fetching page: Not found at checkstatus

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42925  
 
 
  Error fetching page: Not found at checkstatus   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 

  
 
 
 
 

 
 * Go to [http://ec2-52-200-141-179.compute-1.amazonaws.com:8080/blue/organizations/jenkins/cloudbees/] * You'll be redirected to [http://ec2-52-200-141-179.compute-1.amazonaws.com:8080/blue/organizations/jenkins/cloudbees/activity] * Nothing will be showed in the activity and you'll get the JS errors in the screenshot attached \ {code}  GET http://ec2-52-200-141-179.compute-1.amazonaws.com:8080/blue/rest/organizations/jenkins/pipelines/cloudbees/activities/?start=0=26 404 (Not Found)request @ blueocean.js:2551dedupe @ blueocean.js:7854dedupe @ blueocean.js:7877rawFetchJSON @ blueocean.js:2569fetchJSON @ blueocean.js:2650fetchNextPage @ blueocean.js:6128executeAction @ blueocean.js:63201res @ blueocean.js:63173Pager @ blueocean.js:6108lazyPager @ blueocean.js:5244getPager @ blueocean.js:6341activityPager @ blueocean.js:5238componentWillMount @ jenkins-js-extension.js:46475target.(anonymous function) @ jenkins-js-extension.js:11126performInitialMount @ blueocean.js:83535mountComponent @ blueocean.js:83442mountComponent @ blueocean.js:90455updateChildren @ blueocean.js:81720_reconcilerUpdateChildren @ blueocean.js:89308_updateChildren @ blueocean.js:89407updateChildren @ blueocean.js:89394_updateDOMChildren @ blueocean.js:85152updateComponent @ blueocean.js:84970receiveComponent @ blueocean.js:84928receiveComponent @ blueocean.js:90534_updateRenderedComponent @ blueocean.js:83936_performComponentUpdate @ blueocean.js:83906updateComponent @ blueocean.js:83827receiveComponent @ blueocean.js:83729receiveComponent @ blueocean.js:90534_updateRenderedComponent @ blueocean.js:83936_performComponentUpdate @ blueocean.js:83906updateComponent @ blueocean.js:83827performUpdateIfNecessary @ blueocean.js:83743performUpdateIfNecessary @ blueocean.js:90566runBatchedUpdates @ blueocean.js:91605perform @ blueocean.js:93653perform @ blueocean.js:93653perform @ blueocean.js:91544flushBatchedUpdates @ blueocean.js:91627closeAll @ blueocean.js:93719perform @ blueocean.js:93666batchedUpdates @ blueocean.js:87336enqueueUpdate @ blueocean.js:91655enqueueUpdate @ blueocean.js:91263enqueueForceUpdate @ blueocean.js:91396ReactComponent.forceUpdate @ blueocean.js:82775(anonymous) @ jenkins-js-extension.js:11158Reaction.runReaction @ jenkins-js-extension.js:13730runReactions @ blueocean.js:63882transactionEnd @ blueocean.js:63954executeAction @ blueocean.js:63205res @ blueocean.js:63173(anonymous) @ blueocean.js:6616tryCatch @ blueocean.js:38858invokeCallback @ blueocean.js:38873publish @ blueocean.js:38841flush @ blueocean.js:38569blueocean.js:6146 Error fetching page Error: Not Found at checkStatus (blueocean.js:2417)(anonymous) @ blueocean.js:6146 \ {code}  
 

  
 
 

[JIRA] (JENKINS-42927) Pull requests "Enable" button is not doing anything

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay resolved as Duplicate  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42927  
 
 
  Pull requests "Enable" button is not doing anything   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Duplicate  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42926) "Pull requests are unsupported" screen has a link to "Learn more" that should open in a different tab, not in the current one, to not lose the context

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay resolved as Duplicate  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42926  
 
 
  "Pull requests are unsupported" screen has a link to "Learn more" that should open in a different tab, not in the current one, to not lose the context   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Duplicate  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42928) io.jenkins.blueocean.dashboard.harmonizeTimes] not found any startTime, seems that a component should not have called this me

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay resolved as Duplicate  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Thanks for reporting! This is actively being worked on as part of JENKINS-42547.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-42928  
 
 
  io.jenkins.blueocean.dashboard.harmonizeTimes] not found any startTime, seems that a component should not have called this me   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Duplicate  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-42929) DELETE http://ec2-52-200-141-179.compute-1.amazonaws.com:8080/blue/rest/organizations/jenkins/pipelines/isa/queue/578/ 404 (Not Found) when trying to stop a queued build

2017-03-20 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42929  
 
 
  DELETE http://ec2-52-200-141-179.compute-1.amazonaws.com:8080/blue/rest/organizations/jenkins/pipelines/isa/queue/578/ 404 (Not Found) when trying to stop a queued build   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 

  
 
 
 
 

 
 Steps to reproduce the bug (see video [here|https://drive.google.com/open?id=0B8uklOZI9kkqak1VZ1Jwd3J1SVE]): * Create a freestyle job in classic with a bash sleep 10 in it * Go to its BO version * Click on Run several times to have jobs queued * Try to stop one of the queued ones * Sometimes on stop there is a JS error and the job is not removed \ {code}  DELETE [http://ec2-52-200-141-179.compute-1.amazonaws.com:8080/blue/rest/organizations/jenkins/pipelines/isa/queue/578/] 404 (Not Found) request @ blueocean.js:2602 dedupe @ blueocean.js:7854 dedupe @ blueocean.js:7877 rawFetch @ blueocean.js:2620 fetch @ blueocean.js:2695 removeFromQueue @ blueocean.js:5026 _onStopClick @ blueocean.js:1944 onClick @ blueocean.js:2020 invokeGuardedCallback @ blueocean.js:88000 executeDispatch @ blueocean.js:80124 executeDispatchesInOrder @ blueocean.js:80144 executeDispatchesAndRelease @ blueocean.js:79601 executeDispatchesAndReleaseTopLevel @ blueocean.js:79612 forEachAccumulated @ blueocean.js:94269 processEventQueue @ blueocean.js:79788 runEventQueueInBatch @ blueocean.js:88058 handleTopLevel @ blueocean.js:88069 handleTopLevelImpl @ blueocean.js:88136 perform @ blueocean.js:93653 batchedUpdates @ blueocean.js:87336 batchedUpdates @ blueocean.js:91552 dispatchEvent @ blueocean.js:88213 \ {code}  *   When reloading the page the builds we were trying to stop are either stopped or completed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 

[JIRA] (JENKINS-42920) Developer should see error message for failed input step

2017-03-20 Thread i...@ivan.net.nz (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ivan Meredith started work on  JENKINS-42920  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Ivan Meredith  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42791) Developer should be asked for their Github token when loading the editor

2017-03-20 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42791  
 
 
  Developer should be asked for their Github token when loading the editor   
 

  
 
 
 
 

 
Change By: 
 Michael Neale  
 
 
Priority: 
 Critical Major  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42950) credentials-binding-plugin not masking secret text when it includes a single quote

2017-03-20 Thread jeffrey.mcl...@viasat.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jeff Mclean created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42950  
 
 
  credentials-binding-plugin not masking secret text when it includes a single quote
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 credentials-binding-plugin  
 
 
Created: 
 2017/Mar/20 9:50 PM  
 
 
Environment: 
 all  
 
 
Priority: 
  Critical  
 
 
Reporter: 
 Jeff Mclean  
 

  
 
 
 
 

 
 I have a Jenkins job to deploy an ansible playbook and I have used the credentials-binding-plugin secret text entries for entering my different environment ansible vault passwords. 2 of my encrypted passwords work fine but one of them has a single quote in the text and it seems to be causing problems with the masking and so that password is showing up in the logs. I tried escaping in the actual text itself but that did not work either.  I would just change passwords but they are company passwords and not mine to change so please let me know if something can be done to fix the parsing or if there is an immediate workaround for this.   Thanks,   Jeff Mclean  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

[JIRA] (JENKINS-42784) Unable to create new pipeline for empty repo in brand new github org

2017-03-20 Thread kzan...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Keith Zantow started work on  JENKINS-42784  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Keith Zantow  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42522) Metadata plugin deletes old data on startup

2017-03-20 Thread ryan.campb...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 recampbell closed an issue as Incomplete  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Please provide detailed steps to reproduce.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-42522  
 
 
  Metadata plugin deletes old data on startup   
 

  
 
 
 
 

 
Change By: 
 recampbell  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Incomplete  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42829) [Regression] Jenkins pipeline start failing in on when/expression clause with custom method call with No such DSL method found among steps

2017-03-20 Thread florian.migno...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Florian Mignotet commented on  JENKINS-42829  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: [Regression] Jenkins pipeline start failing in on when/_expression_ clause with custom method call with No such DSL method found among steps   
 

  
 
 
 
 

 
 Thank you Andrew Bayer, I've found another solution inspired from your workaround. For me, this ticket can be closed.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-38442) Support nested stages in the Pipeline Graph

2017-03-20 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale commented on  JENKINS-38442  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support nested stages in the Pipeline Graph   
 

  
 
 
 
 

 
 There has been a fair bit of off-list discussion on this, the vast majority seem to be satisfied by:    
 
One level of stages shown in parallel streams of execution 
some first class support for matrix of combinations (in paralllel) 
   I haven't heard a strong case for nested parallel "circles" inside a non parallel stage (in that case people want to label a step or a group of steps, which is different to having a different circle/node during a parallel stream of execution).   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-34890) Unable to push tags to remote GIT repo

2017-03-20 Thread david.macph...@telus.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David MacPhail updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-34890  
 
 
  Unable to push tags to remote GIT repo   
 

  
 
 
 
 

 
Change By: 
 David MacPhail  
 

  
 
 
 
 

 
 When executing a Jenkins GIT build, the system cannot push tags to the remote repo and fails with the following errorERROR: Failed to push tag git_publish_label.15 to originhudson.plugins.git.GitException: org.eclipse.jgit.api.errors.TransportException:  http://tfs.tsl.telus.com/tfs/telus/BT-GIT/_git/Platform-SampleApplication:  error occurred during unpacking on the remote end: error Operation is not valid due to the current state of the object.We are running Jenkins war 1.651.1 with Git Client 1.19.6, Git Plugin 2.4.4 and GIT Server Plugin 1.6Hopefully I have included all required information. Please let me know if anything further required  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-42949) MultiBranch Pipeline periodically stops functioning

2017-03-20 Thread jos...@asperasoft.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 josh harshman created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42949  
 
 
  MultiBranch Pipeline periodically stops functioning   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 pipeline  
 
 
Created: 
 2017/Mar/20 9:12 PM  
 
 
Environment: 
 Ubuntu 16.04 LTS  Jenkins 2.50  
 
 
Priority: 
  Major  
 
 
Reporter: 
 josh harshman  
 

  
 
 
 
 

 
 Issue occurs with MultiBranch Pipelines when branch indexing.  Unable to start or trigger new jobs for the pipeline.  Issue is somewhat intermittent.   Occurs in Jenkins 2.50 & full list of plugins and versions are listed below the logs.   Scan Multibranch Pipeline Log   

 

error: non-monotonic index .git/objects/pack/pack-9d906a20f5c2b0e79b2c2b09baa14bd726fe9a1a.idx
error: non-monotonic index .git/objects/pack/pack-fbee3cebcb7ca35a91f9e429e1d6ea23119997f5.idx
error: non-monotonic index .git/objects/pack/pack-7981186b1bc0bde8f3ade3e7047c746b0ab69371.idx
error: non-monotonic index .git/objects/pack/pack-9d906a20f5c2b0e79b2c2b09baa14bd726fe9a1a.idx
error: non-monotonic index .git/objects/pack/pack-fbee3cebcb7ca35a91f9e429e1d6ea23119997f5.idx
error: unable to create temporary file: Not a directory
fatal: failed to write object
fatal: unpack-objects failed

	at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1793)
	at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1519)
	at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$300(CliGitAPIImpl.java:64)
	at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:315)
	at jenkins.plugins.git.AbstractGitSCMSource.doRetrieve(AbstractGitSCMSource.java:211)

[JIRA] (JENKINS-41740) Show empty state on the Activity, Branch and PR tab when there are no branches

2017-03-20 Thread cmey...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Cliff Meyers started work on  JENKINS-41740  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Cliff Meyers  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-17800) Cobertura uses deprecated method to show trend graph

2017-03-20 Thread gen...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Gennady Feldman assigned an issue to Oliver Gondža  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-17800  
 
 
  Cobertura uses deprecated method to show trend graph   
 

  
 
 
 
 

 
Change By: 
 Gennady Feldman  
 
 
Assignee: 
 sogabe Oliver Gondža  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-17800) Cobertura uses deprecated method to show trend graph

2017-03-20 Thread gen...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Gennady Feldman commented on  JENKINS-17800  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Cobertura uses deprecated method to show trend graph   
 

  
 
 
 
 

 
 Last two releases (separated by over a year) were by Oliver Gondža so looks like the maintainer  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-36802) Unit tests using Docker Pipeline on OS X don't work

2017-03-20 Thread rodr...@freebsd.org (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Craig Rodrigues commented on  JENKINS-36802  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Unit tests using Docker Pipeline on OS X don't work   
 

  
 
 
 
 

 
 Andrew Bayer I encountered the same problem.  I installed Jenkins via Homebrew on Mac:   brew install jenkins Then I ran Jenkins under the root user ID.   java.io.IOException: Failed to run image 'myimage:2'. Error: docker: Error response from daemon: Mounts denied: ://docs.docker.com/docker-for-mac/osxfs/#namespaces for more info. . root/.jenkins/workspace/myjob@tmp   Can you provide details for how you worked around the problem? Thanks.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42939) AccuRev plugin does not start job on detected changes

2017-03-20 Thread zero...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Timothy Williams edited a comment on  JENKINS-42939  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: AccuRev plugin does not start job on detected changes   
 

  
 
 
 
 

 
 I updated my jobs and I'll test with the next promotes.*Question:* With the wildcard changes you  added  made , do you think I''d be able to just remove {{/*}} and specify the folder name now, or do you think I'd still hit the same issue with folder names that begin with the same string (e.g. {{hi-analytics-library}} and {{hi-analytics-library-web}}) kicking off multiple jobs?Thanks!  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42948) NullPointerException when parameterized project option is enabled but any parameter is set

2017-03-20 Thread ivan.marti...@grupomost.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ivan Martinez created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42948  
 
 
  NullPointerException when parameterized project option is enabled but any parameter is set   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Attachments: 
 jenkins-error.log  
 
 
Components: 
 parameter-separator-plugin  
 
 
Created: 
 2017/Mar/20 7:26 PM  
 
 
Environment: 
 Tomcat: 8  JDK: Oracle JDK 1.8  Jenkins ver. 2.32.2  
 
 
Priority: 
  Critical  
 
 
Reporter: 
 Ivan Martinez  
 

  
 
 
 
 

 
 Hello, As the title describe, the exception is thrown when "This project is parameterized" is enabled but no parameters are added.   Steps to reproduce: 
 
Open project configuration 
Enable "This project is parameterized" 
Do not click 'Add Parameter' 
Save/Apply project configuration 
  
 

  
 
 
 
 

 
 
 
  

[JIRA] (JENKINS-41426) EC2- Keeps sending stop signal to a manually stopped instance

2017-03-20 Thread luigi.tagliamont...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Luigi Tagliamonte commented on  JENKINS-41426  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: EC2- Keeps sending stop signal to a manually stopped instance   
 

  
 
 
 
 

 
 Hello there, I have the same problem and I think that for stopped or disconnected computers (Jenkins slaves nodes) the internal check function https://github.com/jenkinsci/ec2-plugin/blob/master/src/main/java/hudson/plugins/ec2/EC2RetentionStrategy.java#L92 should not be executed or, if it is like that by design (I'm not a Jenkins expert) you should return 1 at the beginning of the function and avoid to do all the math and re-send a stop request. If my analysis if the issue is correct I will be happy to open a PR.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42913) RejectedAccessException for docker.image.inside within the library class

2017-03-20 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick resolved as Not A Defect  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 You did not attach the call site, but I suspect you passed steps when you meant to pass this. See the documentation for libraries.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-42913  
 
 
  RejectedAccessException for docker.image.inside within the library class   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Not A Defect  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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

[JIRA] (JENKINS-42939) AccuRev plugin does not start job on detected changes

2017-03-20 Thread zero...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Timothy Williams commented on  JENKINS-42939  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: AccuRev plugin does not start job on detected changes   
 

  
 
 
 
 

 
 I updated my jobs and I'll test with the next promotes. Question: With the wildcard changes you added, do you think I''d be able to just remove /* and specify the folder name now, or do you think I'd still hit the same issue with folder names that begin with the same string (e.g. hi-analytics-library and hi-analytics-library-web) kicking off multiple jobs? Thanks!  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-41773) Copy Artifact sometimes crashes on startup (Jenkins#getDescriptorByType looks sometimes return null)

2017-03-20 Thread ch...@chead.ca (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Christopher Head commented on  JENKINS-41773  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Copy Artifact sometimes crashes on startup (Jenkins#getDescriptorByType looks sometimes return null)   
 

  
 
 
 
 

 
 

 
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
Script1.groovy: 1: unable to resolve class hudson.plugins.copyartifact.BuildSelector
 @ line 1, column 1.
   import hudson.plugins.copyartifact.BuildSelector;
   ^

Script1.groovy: 2: unable to resolve class hudson.plugins.copyartifact.BuildSelectorParameter
 @ line 2, column 1.
   import hudson.plugins.copyartifact.BuildSelectorParameter;
   ^

Script1.groovy: 9: unable to resolve class hudson.plugins.copyartifact.BuildSelector 
 @ line 9, column 52.
   nce.

[JIRA] (JENKINS-42943) Getting below errors when opening installed plugin tab (managing plugins ----> installed plugin tab)

2017-03-20 Thread mark.earl.wa...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mark Waite assigned an issue to Unassigned  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42943  
 
 
  Getting below errors when opening installed plugin tab (managing plugins > installed plugin tab)   
 

  
 
 
 
 

 
Change By: 
 Mark Waite  
 
 
Assignee: 
 Mark Waite  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42943) Getting below errors when opening installed plugin tab (managing plugins ----> installed plugin tab)

2017-03-20 Thread mark.earl.wa...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mark Waite updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42943  
 
 
  Getting below errors when opening installed plugin tab (managing plugins > installed plugin tab)   
 

  
 
 
 
 

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

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42943) Getting below errors when opening installed plugin tab (managing plugins ----> installed plugin tab)

2017-03-20 Thread mark.earl.wa...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mark Waite commented on  JENKINS-42943  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Getting below errors when opening installed plugin tab (managing plugins > installed plugin tab)   
 

  
 
 
 
 

 
 You have not provided enough information for anyone to help you, and you've provided it in a location that very few people read. The stack trace does not mention the git plugin, so I doubt it is a git plugin issue. The stack trace mentions the testswarm-plugin. I assigned it to that plugin.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42939) AccuRev plugin does not start job on detected changes

2017-03-20 Thread joseph...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Joseph Petersen commented on  JENKINS-42939  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: AccuRev plugin does not start job on detected changes   
 

  
 
 
 
 

 
 Yes just the filter for poll   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42939) AccuRev plugin does not start job on detected changes

2017-03-20 Thread zero...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Timothy Williams commented on  JENKINS-42939  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: AccuRev plugin does not start job on detected changes   
 

  
 
 
 
 

 
 Oh, is that what this comment meant? 

So all I could do was simple wildcard without implementing too much.
 I thought you were having a conversation with Arno, I didn't realize you were telling me what to change with the next release (0.7.10). I did see a reference to java/* in the 0.7.10 release notes with a reference to JENKINS-41526, but didn't realize what it meant. My bad. So I don't need to update the Sub-path, I just need to add {} to my current *Filter for Poll SCM value to make it hi-analytics-library/*?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42943) Getting below errors when opening installed plugin tab (managing plugins ----> installed plugin tab)

2017-03-20 Thread venkatesh.raj...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 raja venkatesh sundaraneedi assigned an issue to Mark Waite  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42943  
 
 
  Getting below errors when opening installed plugin tab (managing plugins > installed plugin tab)   
 

  
 
 
 
 

 
Change By: 
 raja venkatesh sundaraneedi  
 
 
Assignee: 
 raja venkatesh sundaraneedi Mark Waite  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
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-42939) AccuRev plugin does not start job on detected changes

2017-03-20 Thread joseph...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Joseph Petersen edited a comment on  JENKINS-42939  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: AccuRev plugin does not start job on detected changes   
 

  
 
 
 
 

 
 [~mitorez]If you refer back to JENKINS-41526 I suggested a change.You never replied  to  so  I went ahead, your new filter should be: hi-analytics-library/*sub-path should stay the same  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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