It is possible to have nested steps inside a parallel step?
I want to have something like that:
pipelines:
default:
- step:
script:
- ./integration-tests.sh --batch 1
- parallel:
- step:
script:
- ./integration-tests.sh --batch 2
- step:
- step:
script:
- ./deploy.sh
- step:
script:
- ./integration-tests.sh --batch 3
Hello @Anton Usov,
Nested steps (a step inside of a step) are not allowed anywhere in the file, not just inside of parallel.
Basically, all steps can have just two levels: top-level sequentially executed steps and steps inside of parallel section, which are executed concurrently.
My guess is that your goal is to execute multiple steps sequentially within a parallel section. If so, unfortunately it is not possible in Pipelines at the moment. The only way to keep parallelism would be to prepare a Docker image that every nested step could run with, and then squash sequential steps into one.
Hope this helps. Let me know if you have any questions.
Cheers,
Daniil
Thank you!
I actually expected an answer like that.
Cheers,
Anton
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Anton Usov @ and what about 2 parallel sections that are run sequentially
its not nested but actually can postpone some parallel runs..
Something like this:
pipelines:
default:
- parallel:
- step:
script:
- ./parallel1-before.sh
- step:
script:
- ./parallel2-before.sh
- parallel:
- step:
script:
- ./parallel1-after.sh
- step:
script:
- ./parallel2-after.sh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's what I ended up doing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.