This file contains hidden or 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
| aws codebuild list-builds-for-project --project-name XXXXX --max-items 100 \ | |
| | jq '.ids[]' -r \ | |
| | xargs aws codebuild batch-get-builds --ids \ | |
| | jq '.builds | sort_by(.buildNumber) | .[] | {buildNumber,startTime,buildStatus} * (.phases|map({key:.phaseType,value:.durationInSeconds})|from_entries)' \ | |
| | mlr --j2p cat |
This file contains hidden or 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
| aws codebuild list-builds-for-project --project-name XXXXX --max-items 100 \ | |
| | jq '.ids[]' -r \ | |
| | xargs aws codebuild batch-get-builds --ids \ | |
| | jq '.builds | sort_by(.buildNumber) | .[] | {buildNumber,startTime,buildStatus} * (.phases|map({key:.phaseType,value:.durationInSeconds})|from_entries)' \ | |
| | mlr --j2p cat |
OlderNewer