Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Looking for help with understanding BITBUCKET Pipelines For beginners.

Neehar October 26, 2022

Hello All, 

 

It is first time i am working on CICD and our team wants to use bitbucket pipelines for the project. 

As i have very limited knowledge with CICD and Docker to create bitbucket pipelines, it is challenging to find better resources on the bit-bucket pipelines. 

I request the team to recommend me any video series to help beginners like me to understand more about bitbucket pipelines and how to use them and other suggestions would also help me. 

 

Thank you, 

Neehar 

1 answer

1 accepted

0 votes
Answer accepted
Patrik S
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
October 27, 2022

Hello @Neehar ,

Welcome to Atlassian Community

The Bitbucket Pipelines platform allows your team to run your build/test/deploy inside a docker container. Essentially, we create containers in the cloud for each of your build steps, and inside these containers you can run commands, as you would normally do in your local machine, but with the advantages of a fresh system, customized and configured for your needs.

You can check out the below documentation for more details on how to get started with the Bitbucket Pipelines :

When you are creating your first pipeline in Bitbucket, you can use one of our several templates that cover a variety of technologies and languages such as NodeJS, PHP, Java, Python, and .NET Core.

You're also welcome to take a look at the Configure bitbucket-pipelines.yml documentation, which covers all the available options you can use when configuring your pipeline.

Hope that helps! Let me know if you have any questions.

Thank you, @Neehar .

Kind regards,

Patrik S

Neehar October 29, 2022

Thank you for the reply. 

The information is very helpful.

Is there any video series on bitbucket pipelines?

Rob Horan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 29, 2022

Would this be useful?

https://youtu.be/ibiusir3jaM

Neehar October 31, 2022

THANKS @Rob Horan & @Patrik S  Very Helpful. 

 

Any implementations of mutli branch pipeline examples ?

Like Rob Horan likes this
Patrik S
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 1, 2022

Hello @Neehar ,

Here's an example of different pipelines for each branch : 

image: node:10.15.0

pipelines:

  default:

    - step:

        script:

          - echo "This script runs on all branches that don't have any specific pipeline assigned in 'branches'."

  branches:

    main:

      - step:

          script:

            - echo "This script runs only on commit to the main branch."

    feature/*:

      - step:

          image: openjdk:8 # This step uses its own image

          script:

            - echo "This script runs only on commit to branches with names that match the feature/* pattern."

We also have this documentation with details about all the pipeline triggers available: 

Thank you, @Neehar !

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events