I have a repository that contains the source code for a library that we use in multiple applications. I have a pipeline configured to build that library whenever a commit is made to that library. Since multiple applications, which happen to reside in different repositories, depend on this library, I would like to automatically launch a build for those repositories. How would I accomplish this?
Hello dcosta,
there is a Pipe for that: https://bitbucket.org/atlassian/trigger-pipeline/src/master/
Hope that helps, let me know you have any more questions around this,
Max
Thanks for that link. I did follow that example, however, the build fails with the following error:
✖ Validation errors:
BITBUCKET_APP_PASSWORD:
I have defined BITBUCKET_APP_PASSWORD as indicated below:
App passwords
App passwords allow two-step verification users to access their Bitbucket account through apps such as Sourcetree. We'll generate the app passwords for you, and you won't need to remember them.
Create app password
Label Created Last accessedActions
BITBUCKET_APP_PASSWORD 5 days ago Revoke
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to inject the app password into the pipeline and replace the placeholder with the value.
For that you can use a variable (https://confluence.atlassian.com/bitbucket/variables-in-pipelines-794502608.html) Make sure to use a secured variable.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Max,
Thanks for your help. I eventually resolved the issue by adding both BITBUCKET_USERNAME and BITBUCKET_APP_PASSWORD as account variables to my team settings, I did make BITBUCKET_APP_PASSWORD a secured variable.
Thanks again
Dennis
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The correct variable name for BITBUCKET_USERNAME is BITBUCKET_USER_NAME and user should've minimum of `Repository Read` and `Pipeline write` permissions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.