Skip to main content

AWS CodeBuild

  • What it is
    • Fully managed build service: compiles source, runs tests, and produces deployable artifacts.
    • Serverless — no build servers to provision, patch, or scale. Builds run in parallel automatically.
  • How it works
    • A buildspec.yml file in the repository defines the build phases and commands.
    • Billed per build minute by compute size, so there is no idle build-fleet cost.
  • Where it sits in the pipeline
  • Contrast with
    • Running Jenkins on Amazon EC2 — you own patching, scaling, and the cost of idle capacity.

Linked from