My app is a flutter app, which test, and builds for android and iOS.
Im trying to add some concurrency to see if it helps in the CI flow time like this:
The only issue with this is that if I dont add the last step Bitrise Wait for build
:
- The PR workflow runs
- Starts the others jobs and enqueue them and success
- I see in the PR that it went good but the other ones are still running.
And if I have this Bitrise Wait for build
then I dont have any concurrency, because this workflow stays active and use 1 of the “concurrency slots”, and so I just have another one, and at the end that’s not any concurrency because I just have 1 workflow running at the time like this:
What can I do?