How to deactivate pipelines builds?
Hey @marcellopato,
you can enable/disable pipelines under the repository admin/settings section at:
https://bitbucket.org/<username>/<repository>/admin/addon/admin/pipelines/settings
Hope that helps,
Seb
Thanks a lot, dude!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Anyway to do it for the entire project?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
how to do this on a pipeline by pipeline basis?
i.e. switch off a single custom pipeline?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think it would be nice to have option inside pipelines config itself to disable pipeline. Could be handy, for example, to disable pipeline for several development branch which shouldn't be built and without hassle of removing or commenting the config entirely.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
I discovered you can make a pipeline manual by changing 'default' to 'custom', and giving it a name:
For example:
pipelines:
default:
- step:
...
becomes something like:
pipelines:
custom:
example-manual-build:
- step:
...
After that, you can trigger your manual build from the page for a particular commit.
See more here:
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.