I read the article "Get started with Bitbucket Pipelines".
Pipelines will now automatically trigger whenever you push changes to your repository, running the default pipeline.
I want to build everything together at build time. not each commit.
I want to know two things.
1. Is it possible not to build automatically when pushing changes?
2. If there are no changes, can I avoid booking builds?
Hi there,
you can configure your pipeline steps to run manually, so they require human intervention to trigger the steps: https://confluence.atlassian.com/bitbucket/run-pipelines-manually-861242583.html
I hope that helps!
Hi,
could you explain what you mean by "If there are no changes, can I avoid booking builds". If your pipeline is triggered manually, then you never have to trigger it if there are no changes.
According to the pricing page for Bitbucket you get a certain number of build minutes per month depending on your license. https://bitbucket.org/product/pricing
So you don't get charged per build, rather you get charged per build minute. So one way you could limit your build minutes might be to add a step in your pipeline to check if anything has changed. Just a thought.
I hope that helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.