Re: Unable to Run jenkins job on zos slave

2021-10-31 Thread Adharsha sri
Yes, please find the below output. FSUM7343 cannot open □?EC□?¤IA for output : no such file or directory. On Fri, 29 Oct 2021, 1:00 pm kuisathaverat, wrote: > Did you test other commands in the Freestyle job? try this > > #!/bin/bash > pwd > echo foo > date > > > > El vie, 29 oct 2021 a las

回复: thread safety of scripted pipeline parallel and usage of nested parallel

2021-10-31 Thread 'abstrakta' via Jenkins Users
sorry, pipeline code should be correct like this: pipeline { agent any stages { stage('Parallel Build') { steps { script { def builds = [:] def tests = [:] stash name: 'src', include: 'src/**' def build_action = { platform, tests -

?????? thread safety of scripted pipeline parallel and usage of nested parallel

2021-10-31 Thread 'abstrakta' via Jenkins Users
OK,I know what you means. But I test these pipeline that data is not synchronized many times( about more than 700 times,I use periodical build to test it automatically). Shared data that is not synchronized is processed correctly every time. Do you really encounter the situation that shared

Re: thread safety of scripted pipeline parallel and usage of nested parallel

2021-10-31 Thread Ivan Fernandez Calvo
The following example should work (I did not test it), I my case I have used maps like the “result” variable, that it is a simple map not synchronized and stores data from all task but it is not read from the different tasks. The other two cases “data” and “mapSync” uses concurrent classes,