Bamboo: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Overview=
=External=
 
* https://www.atlassian.com/software/bamboo
=Subjects=
=Subjects=
* [[Bamboo Concepts]]
* [[Bamboo Concepts|Concepts]]
* [[Bamboo Operations]]
* [[Bamboo Operations|Operations]]
 
 
==Stage==
 
Each stage within a [[#Plan|plan]] represents a step within your build process. A stage may contain one or more [[#Job|jobs]] which Bamboo can execute in parallel.
 
==Job==
 
Each [[#Plan|plan]] has a [[#Default_Job|default job]] when it is created. A job has multiple [[#Task|tasks]]. More than one job can be added to a [[#Plan|plan]].
 
===Default Job===
 
===Build Isolation===
 
Builds are normally run in the agent's native operating system ("Agent environment" choice). The build could be run in an isolated and controlled environment with Docker ("Docker container" option). The build isolation can be changed after a plan is defined with Plan -> Actions: Configure Plan -> Select Job -> "Docker" tab.
 
===Typical Tasks for the Default Job===
 
* Source Code Checkout: Tasks -> Add task -> Source Control -> Source Code Checkout. Task description: "GitHub checkout", Repository: pick from pre-configured, see [[#Repository|repository]].
* Command:  Tasks -> Add task -> Command. Task description: "Gradle build and publish command", Executable: Gradle4, argument:
clean build publish
* JUnit Parser: Tasks -> Add task -> JUnit Parser. Task description: "Parses JUnit test results", Specify custom result directories:
**/test-results/test/*.xml
* Command:  Tasks -> Add task -> Command. Task description: "Clover file converter", Executable: CloverConverter, argument:
clean build publish
* Command:  Tasks -> Add task -> Command. Task description: "SonarQube", Executable: Gradle4, argument:
sonarqube  -Dsonar.branch.name=${bamboo.repository.git.branch} -Dsonar.projectKey=up.plat-svc.cryptm  -Dsonar.organization=test-inc  -Dsonar.host.url=https://sonarcloud.io  -Dsonar.login=...
 
===Artifacts===
 
Create artifact:
Name: Clover Report (System)
Location: target/site/clover
Copy pattern: **/*.*
Not shared, not required.
 
Create artifact:
Name: libs
Location: build/libs
Copy pattern: **/*.jar
Shared, required.
 
===Miscellaneous===
 
Use Clover to collect Code Coverage for this build.
 
Clover is already integrated into this build and a clover.xml file will be produced.
 
Clover XML Location: target/site/clover/clover.xml
 
==Task==
 
==Variables==
 
{{External|[https://confluence.atlassian.com/bamboo/bamboo-variables-289277087.html Bamboo Variables]}}
 
===Build-specific Variables===
===Deployment Variables===
===System Variables===
===Global Variables===
 
Global variables are defined across the entire Bamboo instance, and have the same static value for every plan that is built by Bamboo.
 
===Plan Variables===

Latest revision as of 22:39, 2 January 2022