[JIRA] (JENKINS-37341) Add support of z/OS USS to sh step

2019-05-09 Thread john....@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Anu George commented on  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
 I am curious, do we need all three  plugins for this to work. I do have all,  but just checking. thanks . I need to check whether IBM1047 is supported.  
 

  
 
 
 
 

 
 
 

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


[JIRA] (JENKINS-37341) Add support of z/OS USS to sh step

2019-05-09 Thread lutz.neugeba...@asg.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lutz Neugebauer commented on  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
 IBM1047 vs IBM-1047 doesn't make a difference at my end. So you might want to double check your plugin versions. Here it is running fine with: 
 
durable-task 1.29 
workflow-durable-task-step 2.24 
workflow-job 2.21 Due to the error message you might also want to check whether IBM1047 is supported by the involved JVMs. 
  
 

  
 
 
 
 

 
 
 

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


[JIRA] (JENKINS-37341) Add support of z/OS USS to sh step

2019-05-08 Thread john....@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Anu George edited a comment on  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
 Thanks [~lne] , I tried the below  and it still doesn't work, same error pipeline { agent  \ { node   { label 'KanplexUSSAgent' }   } stages { stage('build') { steps   {   //sh 'pwd'   sh(encoding:'IBM-1047', script:'pwd')   }   } }}  
 

  
 
 
 
 

 
 
 

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


[JIRA] (JENKINS-37341) Add support of z/OS USS to sh step

2019-05-08 Thread john....@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Anu George commented on  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
 Thanks Lutz Neugebauer , I tried the below  and it still doesn't work, same error   pipeline { agent { node  { label 'KanplexUSSAgent' }  } stages { stage('build') { steps  { //sh 'pwd' sh(encoding:'IBM-1047', script:'pwd') }  } } }  
 

  
 
 
 
 

 
 
 

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


[JIRA] (JENKINS-37341) Add support of z/OS USS to sh step

2019-05-08 Thread lutz.neugeba...@asg.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lutz Neugebauer commented on  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
 try 

 
sh(encoding:'IBM1047', script:'pwd') 

 for the shell step  
 

  
 
 
 
 

 
 
 

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


[JIRA] (JENKINS-37341) Add support of z/OS USS to sh step

2019-05-08 Thread john....@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Anu George commented on  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
 I was trying to use this plugin to execute a sh file in z/OS USS, but gives error, so I just tried a simple step as below pipeline { agent { node  { label 'KanplexUSSAgent' }  } stages { stage('build') { steps  { sh 'pwd' }  } } } even this does not work. If anyone can give me suggestions, it will be helpful. Thanks in advance   
 

  
 
 
 
 

 
 
 

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


[JIRA] (JENKINS-37341) Add support of z/OS USS to sh step

2019-05-08 Thread john....@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Anu George updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37341  
 
 
  Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
Change By: 
 Anu George  
 
 
Attachment: 
 image-2019-05-08-09-49-55-527.png  
 

  
 
 
 
 

 
 
 

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


[JIRA] (JENKINS-37341) Add support of z/OS USS to sh step

2019-01-31 Thread dnusb...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Devin Nusbaum updated  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 This feature was just added in version 1.29 of the Durable Task plugin.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-37341  
 
 
  Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
Change By: 
 Devin Nusbaum  
 
 
Status: 
 Fixed but Unreleased Resolved  
 

  
 
 
 
 

 
 
 

 
 
 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-37341) Add support of z/OS USS to sh step

2019-01-31 Thread dnusb...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Devin Nusbaum updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37341  
 
 
  Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
Change By: 
 Devin Nusbaum  
 
 
Released As: 
 durable-task 1.29  
 

  
 
 
 
 

 
 
 

 
 
 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-37341) Add support of z/OS USS to sh step

2019-01-31 Thread dnusb...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Devin Nusbaum updated  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37341  
 
 
  Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
Change By: 
 Devin Nusbaum  
 
 
Status: 
 In Progress Fixed but Unreleased  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 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-37341) Add support of z/OS USS to sh step

2019-01-31 Thread dnusb...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Devin Nusbaum commented on  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
 PR 80 was merged, so z/OS support will be available in the next release.  
 

  
 
 
 
 

 
 
 

 
 
 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-37341) Add support of z/OS USS to sh step

2019-01-31 Thread dnusb...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Devin Nusbaum updated  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37341  
 
 
  Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
Change By: 
 Devin Nusbaum  
 
 
Status: 
 In  Review  Progress  
 

  
 
 
 
 

 
 
 

 
 
 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-37341) Add support of z/OS USS to sh step

2018-12-17 Thread 0x0100001001000...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Bruce Griffith commented on  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
 I am stumbling over exactly the same issue using Multibranch Pipelines.  It seems to me that either script.sh needs to be created in the native character encoding, or script.sh should be tagged in z/OS UNIX System Services filesystems as ASCII.  Writing in the native character encoding seems, to me, to be a more generic implementation.  Maybe this is z/OS unique and it doesn't matter how it is implemented ... I have not found any possible workaround.  For a Freestyle project, you set Java environment variables and the Java slave takes care of it.  
 

  
 
 
 
 

 
 
 

 
 
 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-37341) Add support of z/OS USS to sh step

2018-03-06 Thread ramchand.venkatasamy.m...@statefarm.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ramchand Venkatasamy updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37341  
 
 
  Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
Change By: 
 Ramchand Venkatasamy  
 

  
 
 
 
 

 
 We are going to use the pipeline plugin with build nodes running under z/OS Unix System Services (USS). Unfortunately, the sh step does not work out of the box on that platform because (text) files are encoded by default in IBM1047 (some EBCDIC variant) but the implementation within the durable-task-plugin seems to assume implicitly that the shell input and output is in UTF-8 or ASCII based.First experiments on top of durable-task-1.10 adding character set conversion in BourneShellScript and FileMonitoringTask to any read/write of files script.sh, pid, jenkins-result.txt and jenkins-log.txt were promising. Update : - the Script.sh file is untagged in z/OS USS , if its tagged as ASCII the script can be executed in z/OS USS. when the script is pushed it need to be tagged as ASCII.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





-- 
You 

[JIRA] (JENKINS-37341) Add support of z/OS USS to sh step

2018-03-06 Thread ramchand.venkatasamy.m...@statefarm.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ramchand Venkatasamy assigned an issue to Unassigned  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37341  
 
 
  Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
Change By: 
 Ramchand Venkatasamy  
 
 
Priority: 
 Minor Major  
 
 
Assignee: 
 Lutz Neugebauer  
 

  
 
 
 
 

 
 
 

 
 
 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-37341) Add support of z/OS USS to sh step

2017-01-04 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick updated  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37341  
 
 
  Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 In  Progress  Review  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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


[JIRA] (JENKINS-37341) Add support of z/OS USS to sh step

2017-01-04 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick assigned an issue to Lutz Neugebauer  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37341  
 
 
  Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Assignee: 
 Jesse Glick Lutz Neugebauer  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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


[JIRA] (JENKINS-37341) Add support of z/OS USS to sh step

2017-01-04 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick started work on  JENKINS-37341  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 Open In Progress  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

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

 
   
 

  
 

  
 

   





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


[JIRA] (JENKINS-37341) Add support of z/OS USS to sh step

2016-08-11 Thread lutz.neugeba...@asg.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lutz Neugebauer created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-37341  
 
 
  Add support of z/OS USS to sh step   
 

  
 
 
 
 

 
Issue Type: 
  Improvement  
 
 
Assignee: 
 Jesse Glick  
 
 
Components: 
 durable-task-plugin  
 
 
Created: 
 2016/Aug/11 1:11 PM  
 
 
Environment: 
 durable-task-1.10  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Lutz Neugebauer  
 

  
 
 
 
 

 
 We are going to use the pipeline plugin with build nodes running under z/OS Unix System Services (USS). Unfortunately, the sh step does not work out of the box on that platform because (text) files are encoded by default in IBM1047 (some EBCDIC variant) but the implementation within the durable-task-plugin seems to assume implicitly that the shell input and output is in UTF-8 or ASCII based. First experiments on top of durable-task-1.10 adding character set conversion in BourneShellScript and FileMonitoringTask to any read/write of files script.sh, pid, jenkins-result.txt and jenkins-log.txt were promising.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment