Tutorial: Bamboo Java Specs stored in Bitbucket Server

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

 This guide will show you how you can store Bamboo Specs in a Git repository on Bitbucket Server. This approach lets you automatically build and execute Bamboo Specs on every push you make to a Git repository.



はじめる前に

Step 1: Create a Git repository in Bitbucket Sever and clone it locally

  1. In Bitbucket Server, open the Projects page.
  2. [プロジェクトの作成] をクリックします。 
  3. Enter  Bamboo for project name and key and click Create project.
  4. Click Create repository.
  5. Give your new repository the name tutorial and click Create repository.

You've just created a new empty repository. Use the git clone command to create a clone on your computer. For example:

git clone http://admin@localhost:7990/scm/bamboo/tutorial.git



Step 2: Create a linked repository in Bamboo

  1. Open Bamboo and go to  > Linked repositories
  2. Click Add repository.
  3. Select a Bitbucket Server / Stash repository type.
  4. Choose a name for your repository.
  5. From the Server drop-down, select your Bitbucket Server.
  6. In the Web repository section, select the Bamboo / tutorial repository from the Web repository drop-down. 
  7. Click Save repository.

Your new repository is created and you can start using it in Bamboo.



Step 3: Enable processing of Bamboo Specs in your repository

 By default Bamboo will not look for Bamboo Specs in the Git repository until your explicitly tell it to do so. Let's do it now:

  1. Go to Linked repositories
  2. Select your repository. 

  3. In the Bamboo Specs tab, enable Scan for Bamboo Specs.

In this tutorial we simply grant access to all projects in the Bamboo instance. You can fine-tune project access. See .Enabling repository-stored Bamboo Specs v6.2.

Now, Bamboo is ready to execute Bamboo Specs when the relevant code it committed to the repository. Let's create some code.


Step 4: Create Bamboo Specs project using Maven

  1. Go to the empty Git repository you cloned in step 1:

    cd tutorial
  2. Use the Maven archetype to create a project template. For the purpose of this tutorial, type:
    Note: You must create Bamboo Specs in the bamboo-specs directory, under the repository root.

    mvn archetype:generate -B \
      -DarchetypeGroupId=com.atlassian.bamboo -DarchetypeArtifactId=bamboo-specs-archetype \
      -DarchetypeVersion=6.2.1 \
      -DgroupId=com.my.company -DartifactId=bamboo-specs \
      -Dversion=1.0.0-SNAPSHOT -Dpackage=com.my.company

Your project is created. You can open it in an IDE, such as Eclipse or IDEA, if you want to see how the project is set up. For more information on the code structure, take a look at  Tutorial: Create a simple plan with Bamboo Specs.

Step 5: Commit and push code changes to Bitbucket Server

  1. Add created bamboo-specs directory to VCS and push changes to the server:

    git add bamboo-specs
    git commit -m "Initial commit of Bamboo Specs"
    git push

As soon as you push your code changes to Bitbucket Server, Bamboo will get notified about a new commit available.

Bamboo will checkout your project, compile it and execute Bamboo Specs in a sandbox environment.

Execution of Bamboo Specs will create or update configuration of plans or deployment projects accordingly. 


Step 6: Check to see if the plan was created

  1. Open your Bamboo instance.
  2. From the header, select Build > All build plans
  3. Open the project and plan you've just created.

    All configuration options are disabled because entire plan configuration is now managed by Bamboo Specs from your Bitbucket repository. 

  4. Click Run plan to execute the build.

  5. Find the "Hello World!" message in the logs. 

次のステップ

 Here are some resources that can help you with writing your own Bamboo Specs:

最終更新日: 2019 年 2 月 5 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.