-
Notifications
You must be signed in to change notification settings - Fork 25
CodeBuild event streaming #1809
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
6836010
sync README
jordanstephens 2095b61
sketch out codebuild events
jordanstephens c0ef31e
parse and emit codebuild events
jordanstephens 6f0e03c
avoid emiting NOT_SPECIFIED events
jordanstephens 6b2b7ed
match codebuild event filtering with ecs event filtering
jordanstephens 96a856a
cleanup
jordanstephens File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| package codebuild | ||
|
|
||
| import ( | ||
| "strings" | ||
| "time" | ||
|
|
||
| defangv1 "github.com/DefangLabs/defang/src/protos/io/defang/v1" | ||
| ) | ||
|
|
||
| type Event interface { | ||
| Service() string | ||
| Etag() string | ||
| Host() string | ||
| Status() string | ||
| State() defangv1.ServiceState | ||
| } | ||
|
|
||
| type eventCommonFields struct { | ||
| Account string | ||
| DetailType string | ||
| Id string | ||
| Region string | ||
| Resources []string | ||
| Source string | ||
| Time time.Time | ||
| Version string | ||
| } | ||
|
|
||
| type CodebuildEvent struct { | ||
| eventCommonFields | ||
| message string | ||
| service string | ||
| etag string | ||
| host string | ||
| state defangv1.ServiceState | ||
| } | ||
|
|
||
| func ParseCodebuildEvent(entry *defangv1.LogEntry) Event { | ||
| message := entry.Message | ||
| state := parseCodebuildMessage(message) | ||
|
|
||
| return &CodebuildEvent{ | ||
| message: message, | ||
| service: entry.Service, | ||
| etag: entry.Etag, | ||
| host: entry.Host, | ||
| state: state, | ||
| } | ||
| } | ||
|
|
||
| func (e *CodebuildEvent) State() defangv1.ServiceState { | ||
| return e.state | ||
| } | ||
|
|
||
| func (e *CodebuildEvent) Service() string { | ||
| return e.service | ||
| } | ||
|
|
||
| func (e *CodebuildEvent) Etag() string { | ||
| return e.etag | ||
| } | ||
|
|
||
| func (e *CodebuildEvent) Host() string { | ||
| return "codebuild" | ||
| } | ||
|
jordanstephens marked this conversation as resolved.
|
||
|
|
||
| func (e *CodebuildEvent) Status() string { | ||
| return "" | ||
|
jordanstephens marked this conversation as resolved.
|
||
| } | ||
|
|
||
| func parseCodebuildMessage(message string) defangv1.ServiceState { | ||
| switch { | ||
| case strings.Contains(message, "Phase complete: ") && strings.Contains(message, "State: FAILED"): | ||
| return defangv1.ServiceState_BUILD_FAILED | ||
| case strings.Contains(message, "Running on CodeBuild"): | ||
| return defangv1.ServiceState_BUILD_ACTIVATING | ||
| case strings.Contains(message, "Phase is DOWNLOAD_SOURCE"): | ||
| return defangv1.ServiceState_BUILD_RUNNING | ||
| case strings.Contains(message, "Entering phase INSTALL"): | ||
| return defangv1.ServiceState_BUILD_RUNNING | ||
| case strings.Contains(message, "Entering phase PRE_BUILD"): | ||
| return defangv1.ServiceState_BUILD_RUNNING | ||
| case strings.Contains(message, "Entering phase BUILD"): | ||
| return defangv1.ServiceState_BUILD_RUNNING | ||
| case strings.Contains(message, "Entering phase POST_BUILD"): | ||
| return defangv1.ServiceState_BUILD_STOPPING | ||
| case strings.Contains(message, "Phase complete: UPLOAD_ARTIFACTS State: SUCCEEDED"): | ||
| return defangv1.ServiceState_DEPLOYMENT_PENDING | ||
| default: | ||
| return defangv1.ServiceState_NOT_SPECIFIED | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.