The pipeline's Build stage must run unit tests and build or push the inference image. Someone tried to put that work in a deploy-only click. Which service is the build and test workhorse?
Select an answer to reveal the explanation.
Short Explanation
The Build stage must run unit tests and build or push the image. CodeBuild is the buildspec-driven workhorse. CodeDeploy rolls a revision, and a deploy-only click skips CI.
Full Explanation
AWS CodeBuild is the build and test workhorse (buildspec-driven) in the CI stage. CodeDeploy rolls a revision; it does not replace CodeBuild. Translate is not a buildspec, and a deploy-only click skips CI.