[JIRA] (JENKINS-56794) Support saveOutput in the pipeline step for email-ext

2020-05-05 Thread avne...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Avner Hartuv commented on  JENKINS-56794  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support saveOutput in the pipeline step for email-ext   
 

  
 
 
 
 

 
 Indeed - works great. Thanks  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
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.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.198442.1553774639000.22195.1588711380248%40Atlassian.JIRA.


[JIRA] (JENKINS-56794) Support saveOutput in the pipeline step for email-ext

2020-05-04 Thread avne...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Avner Hartuv commented on  JENKINS-56794  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support saveOutput in the pipeline step for email-ext   
 

  
 
 
 
 

 
 Hi Any idea when this fix will be released?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
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.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.198442.1553774639000.21007.1588589460230%40Atlassian.JIRA.


[JIRA] (JENKINS-50907) customWorkspace setting of agent directive does not support EXECUTOR_NUMBER

2020-01-16 Thread avne...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Avner Hartuv commented on  JENKINS-50907  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: customWorkspace setting of agent directive does not support EXECUTOR_NUMBER   
 

  
 
 
 
 

 
 Thank you!  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.6#713006-sha1:cc4451f)  
 
 

 
   
 

  
 

  
 

   





-- 
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.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.190037.1524217689000.458.1579185660646%40Atlassian.JIRA.


[JIRA] (JENKINS-50907) customWorkspace setting of agent directive does not support EXECUTOR_NUMBER

2018-11-14 Thread avne...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Avner Hartuv edited a comment on  JENKINS-50907  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: customWorkspace setting of agent directive does not support EXECUTOR_NUMBER   
 

  
 
 
 
 

 
 for now i have an ugly workaround - set a soft link with _ instead of @ {code:java}pipeline {  stages {stage("set custom dir"){steps {script {customDir=sh (returnStdout: true, script: 'set +e ;  \  NEW_PWD=`pwd`;  \  HAS_AT=`pwd | grep \\@` ; \  if [ "HAS_AT" != "" ]; then  \  BAD_PWD=`pwd` ; NEW_PWD=`pwd | sed "s/\\@/_/"` ; \  if [ ! -e $NEW_PWD ]; then  \  ln -s $BAD_PWD $NEW_PWD;  \  fi  ; \  fi;  \  echo $NEW_PWD').trim()}}}stage("demo the dir"){steps {dir (customDir) {script { sh "sleep 10 ; pwd"}}}}}}def customDir{code}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-50907) customWorkspace setting of agent directive does not support EXECUTOR_NUMBER

2018-11-14 Thread avne...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Avner Hartuv commented on  JENKINS-50907  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: customWorkspace setting of agent directive does not support EXECUTOR_NUMBER   
 

  
 
 
 
 

 
 for now i have an ugly workaround - set a soft link with _ instead of @   

 

pipeline {

  stages {

stage("set custom dir"){
steps {
script {
customDir=sh (returnStdout: true, script: 'set +e ; NEW_PWD=`pwd`; HAS_AT=`pwd | grep \\@` ; if [ "HAS_AT" != "" ]; then BAD_PWD=`pwd` ; NEW_PWD=`pwd | sed "s/\\@/_/"` ; if [ ! -e $NEW_PWD ]; then ln -s $BAD_PWD $NEW_PWD; fi  ; fi; echo $NEW_PWD').trim()
}
}
}

stage("demo the dir"){
steps {
dir (customDir) {
script {
sh "sleep 10 ; pwd"
}
}
}
}
}
}

def customDir 

  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-50907) customWorkspace setting of agent directive does not support EXECUTOR_NUMBER

2018-11-13 Thread avne...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Avner Hartuv commented on  JENKINS-50907  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: customWorkspace setting of agent directive does not support EXECUTOR_NUMBER   
 

  
 
 
 
 

 
 This cause me also a problem - some of my tests are failing because of this @ symbol. Maybe the approach should be a configuration of the separator - by default it can be @ but admin will be able to change it with other symbol like dash   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-34395) Support for building tags

2017-03-30 Thread avne...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Avner Hartuv updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-34395  
 
 
  Support for building tags   
 

  
 
 
 
 

 
Change By: 
 Avner Hartuv  
 
 
Priority: 
 Minor 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-34395) Support for building tags

2017-03-30 Thread avne...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Avner Hartuv commented on  JENKINS-34395  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Support for building tags   
 

  
 
 
 
 

 
 We are in a middle of a migration process to pipeline. I must say this problem really block us   
 

  
 
 
 
 

 
 
 

 
 
 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] [subversion] (JENKINS-17720) subversion SubversionChangeLogSet index.jelly return always 1 revision when using it.revisions

2013-04-23 Thread avne...@gmail.com (JIRA)














































Avner Hartuv
 created  JENKINS-17720


subversion SubversionChangeLogSet index.jelly return always 1 revision when using it.revisions















Issue Type:


Bug



Assignee:


Unassigned


Attachments:


subversion_index.jelly



Components:


subversion



Created:


23/Apr/13 3:33 PM



Description:


When trying to get the list of revisions in SubversionChangeLogSet/index.jelly i get only 1 entry.

the line ${it.revisions.size()} print 1 even if there are actually more changes.




Environment:


Jenkins 1.472




Project:


Jenkins



Labels:


plugin
jenkins
subversion




Priority:


Major



Reporter:


Avner Hartuv

























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







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.