Extending and Executing Bitbucket Pipelines
In Chapter 5, we started with an introduction to Bitbucket Cloud, a cloud-based source code management (SCM) tool from Atlassian that includes Bitbucket Pipelines. Bitbucket Pipelines allows for continuous integration and deployment, where source code is built, tested, and deployed automatically once a commit is made.
In this chapter, we will start by looking at continuous integration using Bitbucket Pipelines. You will extend your knowledge of Bitbucket Pipelines by adding integrations to third-party tools that perform testing for syntax checking and security. You will also define and configure runners and the agents that perform the execution of Bitbucket Pipelines. Recipes in this chapter include the following:
- Configuring pipeline options
- Conditional execution of pipelines
- Manual execution
- Scheduled execution
- Defining variables
- Defining a runner for a pipeline
- Connecting to Bitbucket Pipes
- Testing...