Hello, dis you plan to integrate with SBT in Pipelines ?

Shoot Share Show August 22, 2016
 

2 answers

1 accepted

1 vote
Answer accepted
Philip Hodder
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 22, 2016

You can already use SBT inside of Pipelines!

Try adding the following to your bitbucket-pipelines.yml file:

pipelines:
  default:
    - step:
        script:
          - apt-get update
          - apt-get install apt-transport-https
          - echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
          - apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 642AC823
          - apt-get update
          - apt-get install sbt
          - #add the sbt commands you want to run here

That should help you get a first build set up. After that, you can try looking for a Docker image that already has sbt installed. Or you can have a go at making your own! smile https://answers.atlassian.com/questions/39140980

There is another question that is tracking language examples for Bitbucket Pipelines. https://answers.atlassian.com/questions/39566559 You should upvote (and add) any languages you would like to see examples of. smile

0 votes
Shoot Share Show August 22, 2016

Thank you for the detailed answer.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events