Stop builds in Amazon CodeBuild
You can use the Amazon CodeBuild console, Amazon CLI,or Amazon SDKs to stop a build in Amazon CodeBuild.
Stop a build (console)
-
Open the Amazon CodeBuild console at https://console.amazonaws.cn/codesuite/codebuild/home
. -
Do one of the following:
-
If the
build-project-name
:build-ID
page is displayed, choose Stop build. -
In the navigation pane, choose Build history. In the list of builds, select the box for the build, and then choose Stop build.
-
In the navigation pane, choose Build projects. In the list of build projects, in the Name column, choose the link for the build project's name. In the list of builds, select the box for the build, and then choose Stop build.
-
Note
By default, only the most recent 100 builds or build projects are displayed. To view more builds or build projects, choose the gear icon, and then choose a different value for Builds per page or Projects per page or use the back and forward arrows.
If Amazon CodeBuild cannot successfully stop a build (for example, if the build process is already complete), the Stop button is disabled or might not appear.
Stop a build (Amazon CLI)
-
Run the stop-build command:
aws codebuild stop-build --id
id
In the preceding command, replace the following placeholder:
-
id
: Required string. The ID of the build to stop. To get a list of build IDs, see the following topics:
If Amazon CodeBuild successfully stops the build, the
buildStatus
value in thebuild
object in the output isSTOPPED
.If CodeBuild cannot successfully stop the build (for example, if the build is already complete), the
buildStatus
value in thebuild
object in the output is the final build status (for example,SUCCEEDED
). -
Stop a build (Amazon SDKs)
For more information about using Amazon CodeBuild with the Amazon SDKs, see the Amazon SDKs and tools reference.