I want to have one step, that will setup everything and then in parallel run other steps. Currently I have something like this:
image: python:3.9.16-alpine pipelines: default: - step: runs-on: - self.hosted - regressiontests name: First Step clone: enabled: false caches: - pip script: - apk add git - apk add openssh-client - git clone myrepository.git - pip install -r myrepository/requirements.txt - echo $ENV_FILE | base64 -d -i > myrepository/.env artifacts: - myrepository/** - step: runs-on: - self.hosted - regressiontests name: Second Step clone: enabled: false caches: - pip script: - cd myrepository - pip install -r requirements.txt parallel: - step: name: Step 2.1 script: - python fancy command 1 - step: name: Step 2.2 script: - python fancy command 2 - step: name: Step 2.3 script: - python fancy command 3 - step: name: Step 2.4 script: - python fancy command 4 But the only steps that I see is First Step and Second Step none of parallel steps is executed in pipelines 