Re: [go-cd] Is possible to run task parallel

2024-01-05 Thread 'Alexey Savchkov' via go-cd
@Tsanko Stoev No, the semicolon simply produces a list of commands which are still executed in turn, see e.g `man sh` of `man bash` for the explanation of lists E.g. from `man bash`: "Commands separated by a ; are executed sequentially". In theory you could run shell tasks in parallel by

Re: [go-cd] Is possible to run task parallel

2024-01-04 Thread Tsanko Stoev
If you are executing a command you should be able to use ; to execute multiple commands concurrently. For example : "command1 ; command2 ; command3" . I believe this should work on Windows and Linux. Thanks. Tsanko Stoev On Thu, Jan 4, 2024 at 7:25 AM Vijayakumaran A. <

Re: [go-cd] Is possible to run task parallel

2024-01-04 Thread Vijayakumaran A.
Thanks.so we can't run multiple stage with one agent.but Is there any possibilities to run the GOCD Task parallely? i have submit my pipeline code here i have one stage with one job 5 task(commands)..i wanted to run all my task(commands) parallel.Please find my attachment here. On Thursday,

Re: [go-cd] Is possible to run task parallel

2024-01-04 Thread Chad Wilson
Indeed, you need the ability to have multiple agents running in parallel to be able to do multiple jobs in parallel. The best way to achieve this depends on 1) your installation/deployment choice 2) your agent requirements 3) whether you are experimenting or thinking about a production deployment.

Re: [go-cd] Is possible to run task parallel

2024-01-04 Thread Sriram Narayanan
No On Thu, 4 Jan 2024 at 3:02 PM, Vijay A wrote: > > I have installed GoCD server. And Installed one GoCD Agent. > > Now i created a new pipeline : Pipeline1 > > Created one stage : Stage1 > > Now two jobs: Job1 and Job2 > > As i am having one GoAgent, does these two jobs will be executed >

[go-cd] Is possible to run task parallel

2024-01-04 Thread Vijay A
I have installed GoCD server. And Installed one GoCD Agent. Now i created a new pipeline : Pipeline1 Created one stage : Stage1 Now two jobs: Job1 and Job2 As i am having one GoAgent, does these two jobs will be executed parallely.is there any way to achieve this ? -- You received this