Introduction to CodeBuild
Get to know more about the capabilities of AWS CodeBuild as a build tool for your software project.
Introduction to AWS CodeBuild
AWS CodeBuild is a continuous integration service offered by AWS that allows us to build our application code into a production-ready version. CodeBuild typically takes our code and does the following:
- Compiles the source code
- Runs the unit tests that are written in the test scripts
- Produces a build artifact that you can then deploy to different environments
When ...