-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #126 from theserverlessway/feature/build-limits
Add option to limit number of codebuild builds, set to 10 by default
- Loading branch information
Showing
6 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
source $CURRENT_COMMAND_DIR/build_selection.sh | ||
|
||
awscli codebuild batch-get-builds --output table --ids $SELECTED --query "builds[].{ | ||
\"1.Id\":id, | ||
\"2.Number\":buildNumber, | ||
\"3.Phase\":currentPhase, | ||
\"4.Status\":buildStatus, | ||
\"5.StartedAt\":startTime, | ||
\"6.FinishedAt\":endTime, | ||
\"7.Environment\":environment}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# `awsinfo codebuild build-status [first-filters]+ -- [second-filters]*` | ||
|
||
Show only the status and most relevant data of a build | ||
|
||
## First Filter matches against | ||
|
||
* Project Name | ||
|
||
## Second Filter matches against | ||
|
||
* Build Id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters