From the course: Continuous Integration: Tools
Unlock the full course today
Join today to access over 24,100 courses taught by industry experts.
Bitbucket Pipelines
From the course: Continuous Integration: Tools
Bitbucket Pipelines
Bitbucket pipelines is part of the Bitbucket Repository service offered by Atlassian, the same company that produces Jira, Confluence, and the self-hosted CI/CD system, Bamboo. Bitbucket provides source code management for Git and Mercurial revision control systems. The repo service also integrates well with other Atlassian products for tracking issues and project management. Individual users can use Bitbucket for free. For additional features and support, pricing for small teams and enterprises is reasonable. Check the Bitbucket website for the current rates. To configure Bitbucket pipelines, projects need to include a configuration file named bitbucket-pipeline.yml, located in the root folder of the repository. Pipelines use containers to run the commands based on the configuration in the YAML file. Individual developers and small teams using Bitbucket for free are given 50 minutes of build time per month. So to keep within that free tier, you'll want to use pipelines for running…