Connecting to Bitbucket Pipes
When we perform continuous integration on our build, we may want to perform testing or security scans to ensure our resulting build has high quality and is secure. Bitbucket Pipelines allows for testing and security scans through the use of integrations. The integrations between Bitbucket Pipelines and an external tool or environment are called Bitbucket Pipes.
We are going to see what pipes are available to Bitbucket Pipelines for integrating with third-party tools and environments. We will also see how to add pipes to your bitbucket-pipelines.yml
to integrate our pipeline.
How to do it...
The Bitbucket editor for bitbucket-pipelines.yml
can display the Pipes available for use. The Pipes are then placed in the script
section of the bitbucket-pipelines.yml
file, as seen in the following instructions:
- As we saw in the introduction to Bitbucket Pipelines in Chapter 5, when you edit the
bitbucket-pipelines.yml
file in the Bitbucket GUI, it...