Pradeep Fernando
Pradeep Fernando

Reputation: 659

tagging built artifacts in Bamboo CI server

We are using bamboo as our integration server. During each build it produces binary packs of our products. Some of the built artifacts then goes in to QA.

Is there a way to retain build artifacts of a certain build job number, irrespective of the global build expire configuration. For an example, at some point we identify one of the built artifacts as release candidate.

The QA should be able to download that specific pack even after one weeks time. Right now we are copying the build artifacts from CI server to some other machine. It is a script, but still it is a manual process.

In Hudson there is an option called 'keep this build forever'.

Upvotes: 2

Views: 839

Answers (1)

MedTechDeveloper
MedTechDeveloper

Reputation: 169

Depending on your version this is possible by applying a label to it. Under a plan's configuration on the "Miscellaneous" tab, you can set a label which can then be used to prevent a build from expiring.

For example, our system has builds that can get labelled "SaveBuild" which then prevents their expiry.

Upvotes: 1

Related Questions