...
/Demo: Creating a Delivery Pipeline Using AWS CodePipeline
Demo: Creating a Delivery Pipeline Using AWS CodePipeline
Learn how to use AWS CodePipeline visual modeler to design an end-to-end release process.
We'll cover the following...
We'll cover the following...
Let’s begin by understanding what we'll create in this lesson using AWS CodePipeline. We'll use the term stages to refer to a CodePipeline stage, and please don’t confuse this with the DevOps phases.
Automating a release using AWS CodePipeline
We'll create a release pipeline consisting of three stages:
Source stage that uses AWS CodeCommit.
Build stage that uses AWS CodeBuild.
Deploy stage that uses AWS CodePipline.
Whenever a developer commits a change to AWS CodeCommit, a build must be triggered immediately by AWS CodeBuild, producing build artifacts that AWS CodeDeploy eventually deploys. AWS S3 facilitates this mechanism by ...