Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Error execute custom pipeline

Thiago Andrade
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
January 5, 2022

Hi guys!
I'm having the following problem running a pipeline in custom.

Code pipeline:

pipelines:
  custom:
    api:
      branches:
        master:
          - step: *build
          - step: *deploy

 

Message error: There is an error in your bitbucket-pipelines.yml at [pipelines > custom > api]. To be precise: This section should be a list (it is currently defined as a map).

 

1 answer

0 votes
Igor Stoyanov
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 6, 2022

@Thiago Andrade  hi. Thanks for your question. Try to follow this example:

image:
name: python:3.9

test: &test
step:
name: Test
service:
docker
script:
- echo test


pipelines:
custom:
api:
- <<: *test
branches:
master:
- <<: *test

As you can see `branches` and `custom` should be on one level. Also you need to add logic of step to your `api` section.

More info you can find here: pipeline-triggers/#Steps 

Regards, Igor.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events