From the course: DevOps with AWS: Tools for Automated Workflows

Unlock this course with a free trial

Join today to access over 25,500 courses taught by industry experts.

CodeBuild overview

CodeBuild overview

- [Instructor] So now let's get into the code build. AWS CodeBuild is a fully managed continuous integration service that compiles source code, runs test, and produces software packages that are ready to deploy. It is serverless, so you don't need to provision or manage any servers. CodeBuild scales continuously and processes multiple builds concurrently, so your builds are not left waiting in the queue. It leverages Docker container under the hood. That means that every build is reproducible and you will pay for the usage it takes to complete the builds. It also supports custom Docker images to extend capabilities for your custom applications. So you can get started quickly by using prepackaged build environments, or you can create custom build environments as well. Finally, it is secure and integrated with IAM for build permissions and with KMS for encryption, and with CloudTrail for API calls logging. So how CodeBuild work in practice? We get source code from a code repository like…

Contents