How to Parallel the workflows in Bitrise?

I have a scenario where i will trigger the appium server to run, which will keep running until all my tests / build will go thru.
If I sequence the command appium along with the other build commands, my build will not proceed with next step as appium server will keep running and Bitrise, workflow will never proceed to next step. so I thought of running it parallel workflow, so i will run appium in one work flow and gradle script in another work flow which will run my tests. HOw to achieve this?

Hi @svbabukumar,

Iā€™d suggest you to just try the standard Bash async & operator: https://stackoverflow.com/a/2368141/974381

1 Like