Pipeline
A managed CI/CD pipeline that builds, tests, and deploys code automatically, carrying a change from a source repository through to running infrastructure.
Description
The managed CI/CD services (AWS CodePipeline with CodeBuild/CodeDeploy, Azure DevOps Pipelines, GCP Cloud Build with Cloud Deploy) all automate the path from a source commit through build, test, and release to deployment targets. The differences are in packaging and breadth: Azure DevOps is a broad suite spanning Boards, Repos, and Pipelines with a large task marketplace; AWS composes several discrete services (CodePipeline, CodeBuild, CodeDeploy) that you wire together and gate with IAM; GCP pairs Cloud Build for build/test with Cloud Deploy for progressive, approval-gated delivery to GKE and Cloud Run. To the best of our knowledge the core role is equivalent; choose by your existing repository and deployment targets and how much surrounding project-management tooling you want.
Capabilities
- Automate build, test, and deployment stages
- Trigger on repository commits or pull requests
- Promote artifacts across environments with approvals
- Deploy to compute, container, and serverless targets