Conclusion
Understand how AWS CodeCommit, CodeBuild, CodeDeploy, and CodePipeline work together to automate software integration and deployment. Learn the roles of buildspec.yml and appspec.yml files, and gain an overview of additional AWS tools that support CI/CD workflows. This lesson helps you consolidate your knowledge of AWS native CI/CD solutions.
We'll cover the following...
Summary
CI and CD are two essential terminologies in today’s world of software development.
CI means continuous integration. It helps guarantee that there is a single source of truth and that all code changes are stored in a central repository for the team. It ensures code changes are appropriately tested before getting merged into the central codebase.
CD stands for continuous delivery/deployment. It is a practice of ...