I want to build ,test and deploy multiple project as in single Project's pipeline as i want to test end to end flow .
Hi Parth,
As Pipelines is repository-centric, we don't support this natively. Though there are a couple of setups you could use, depending on your use case.
The first is if you have dependent repositories. So if you have two things you release independently of each other, but you don't want to release if you've broken an integration point between them.
For this I'd suggest having your Repo #1 pipeline clone Repo #2 and then you can do your E2E testing there. (if both can potentially break the integration, you'd want to do the equivalent in both repositories). For details on how to set up cloning via SSH: https://confluence.atlassian.com/bitbucket/use-ssh-keys-in-bitbucket-pipelines-847452940.html.
The second is if the repositories need to be built and deployed together.
In this case you could use sub repositories, and have your pipeline run on the combined repository.
Hopefully this helps.
Cheers,
Geoff
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.