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

How to build dependencies in bitbucket-pipelines.yml

Luca Orlandi October 26, 2016

This 

 

image: java:8

pipelines:
  default:
    - step:
        script: # Modify the commands below to build your repository.
          - git clone https://lrkwz@bitbucket.org/myproject/myrepo.git
          - cd myrepo
          - mvn install
          - cd ..
          - ./gradlew build

 

fails because cloning myrepo requires a password.

How can I build dependencies before building my actual project?

1 answer

1 vote
Steven Vaccarella
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
October 26, 2016

The best way to clone a private repository is using ssh rather than https so that you don't need to use your personal password.

Have a look at these guides for setting up ssh for a pipeline:

https://answers.atlassian.com/questions/39429257

https://answers.atlassian.com/questions/39243415

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events