Questions tagged [bamboo]

Bamboo is a continuous integration and deployment server from Atlassian, the makers of JIRA, Confluence and Crowd.

Bamboo provides automated building, testing, deploying, and releasing of software. It's one of the most famous tool for continuous integration, deployment, and delivery.

Tech stack

Bamboo is suitable for any language, and other popular technologies like , , and . You can choose from a big variety of available tasks for both build and deployment projects, or search for free add-ons!

Bamboo Specs

Configuration as code, called Bamboo Specs, allows the entire configuration of Bamboo plans to be stored as source code. It moves the managing of plans from the Bamboo UI to the developer's integrated development environment (IDE). This approach brings a lot of benefits and works with YAML and Java.

Deployment projects

Bamboo gives deployments the first-class treatment with deployment projects and environments. A deployment project holds the software project you are deploying: releases that have been built and tested, and the environments to which releases are deployed.

Dedicated agents

With Bamboo's dedicate agents feature, you can run hot fixes and critical builds right away! When you dedicate an agent, no other activity will be able to use it, unless it is dedicated to that activity as well. This means no wait in the queue for free build agents when there are critical bugs to fix!

Visibility

Before deploying a new release, see the full roll-up of code changes and issues that have come in since the previous deploy. Ops teams can anticipate what they'll be responsible for deploying and supporting in production, and release managers get a clear view of what is going live.

See the Bamboo website for further information.

1577 questions
127
votes
12 answers

"Git fatal: ref HEAD is not a symbolic ref" while using maven release plugin

I get the following error output while running the Maven release plugin prepare step i.e. mvn release:prepare --batch-mode -DreleaseVersion=1.1.2 -DdevelopmentVersion=1.2.0-SNAPSHOT -Dtag=v1.1.2 -X from an Atlassian Bamboo plan. However doing the…
SkyWalker
  • 13,729
  • 18
  • 91
  • 187
127
votes
10 answers

xcodebuild says does not contain scheme

I have a curios issue. I have a project that I've worked on and always built from the XCode IDE, and it worked fine. Now I'm setting up Bamboo to build the project and as such am building it from the command line. The issue is, if I check my code…
Zac Tolley
  • 2,340
  • 4
  • 19
  • 22
117
votes
6 answers

Bamboo Vs. Hudson(a.k.a. Jenkins) vs Any other CI systems

Anyone out there have experience with both Hudson and Bamboo? Any thoughts on the relative strengths and weaknesses of these products? Okay, since folks keep mentioning other CI products I'll open this up further. Here are my general problem. I want…
Karthik Ramachandran
  • 11,925
  • 10
  • 45
  • 53
59
votes
7 answers

Running JavaScript unit tests headlessly in a Continuous Integration build

I have a webapp build plan running on a Continuous Integration system (Atlassian Bamboo 2.5). I need to incorporate QUnit-based JavaScript unit tests into the build plan so that on each build, the Javascript tests would be run and Bamboo would…
miek
  • 3,446
  • 2
  • 29
  • 31
37
votes
4 answers

Atlassian Bamboo with Django & Python - Possible?

At my company, we currently use Atlassian Bamboo for our continuous integration tool. We currently use Java for all of our projects, so it works great. However, we are considering using a Django + Python for one of our new applications. I was…
TM.
  • 108,298
  • 33
  • 122
  • 127
36
votes
2 answers

QualityToolsPackage failed to load in build?

I am using Bamboo [from Altassian] and it uses the devenv.com builder to build solution files. Currently, I seem to be getting a "false" error in my builds - that I've tried to solve by myself but just can't - so I thought I would ask. Each build…
Tom
  • 421
  • 4
  • 7
33
votes
2 answers

How to set "execute" attribute to a file and check it in SVN from Windows?

I have SVN configured in Linux at a different location and I need to check-in a shell script to SVN with executable attribute ON from Windows. I use Bamboo as CI, which checks out sources from SVN and does the periodic build. It throws error that…
Mark
  • 335
  • 1
  • 3
  • 5
27
votes
6 answers

TeamCity and JIRA?

Is it possible for TeamCity to integrate to JIRA like how Bamboo integrates to JIRA? I couldnt find any documentation on JetBrains website that talks about issue-tracker integration. FYI: I heard that TeamCity is coming out with their own tracker…
sivabudh
  • 31,807
  • 63
  • 162
  • 228
25
votes
3 answers

How to tag a git repo in a bamboo build

I'm trying to tag the git repo of a ruby gem in a Bamboo build. I thought doing something like this in ruby would do the job `git tag v#{current_version}` `git push --tags` But the problem is that the repo does not have the origin. somehow Bamboo…
Allen Bargi
  • 14,674
  • 9
  • 59
  • 58
23
votes
1 answer

Prevent Bamboo from failing job when failing tests are moved to quarantine

On Bamboo I have MSBuild job for building and running tests. It works fine - but I want to use test quarantine option so when I have some test moved to quarantine (and this moved tests are only what fail) job will be marked as successful I moved one…
pbaranski
  • 22,778
  • 19
  • 100
  • 117
22
votes
1 answer

Bamboo : How to execute some logic if job is cancelled or fails

I'm in a process of writing a Bamboo plugin, the bulk of which is complete. The plugin works by starting a remote process off via a post request to a server and then polling the same server until it gets a message saying the process has completed or…
bScutt
  • 872
  • 8
  • 23
16
votes
2 answers

Displaying all tests names on Bamboo

Is there a way to display all tests names in Bamboo, instead of only the names of the failed/fixed tests. When I browse to the tests section of the result page of the build, only the total number of tests is displayed, e.g. '30 tests in total'. What…
Sergii Dumyk
  • 171
  • 1
  • 7
16
votes
2 answers

Starting new Docker container with every new Bamboo build run and using the container to run the build in

I am new to Bamboo and are trying to get the following process flow using Bamboo and Docker: Developer commits code to a Bitbucket branch Build plan detects the change Build plan then starts a Docker container on a dedicated AWS instance where…
16
votes
2 answers

Triggering build on Bamboo for pull requests on Stash?

I want to know if it is possible to configure something similar to what is accomplished by Jenkins+Github with the request builder plugin. Specifically, triggering a build on Bamboo when a pull request is created on Stash, using the pull request…
Daniel C. Sobral
  • 295,120
  • 86
  • 501
  • 681
15
votes
3 answers

How to save artifacts in Bitbucket-Pipelines

I am new to bamboo. What I try to do is collecting all .dacpac files that are created during the build process. image: microsoft/dotnet:latest pipelines: default: - step: script: # Modify the commands below to build your repository. - cd…
Patrick Spiegel
  • 151
  • 1
  • 1
  • 4
1
2 3
99 100