-
Notifications
You must be signed in to change notification settings - Fork 140
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
feat: Add batch support #59
base: main
Are you sure you want to change the base?
Conversation
CodeBuild supports batches. A single buildspec can kick off several batches. This adds support for both running as a command line as well as running as a GitHub action. Additional * Update the Readme with the correct `npx` command * Add wallaby conf for faster testing
By passing the is id instead of the arn I would stream each build twice. The `currentBuildSummary` only has the arn so I can only identify builds by arn.
Does this echo the build logs from each of the builds in the batch? |
@@ -183,7 +183,7 @@ In order to use this tool, | |||
you must first `git checkout` the commit that you want to test. | |||
|
|||
``` | |||
npx @aws-actions/codebuild-run-build -p ProjectName -r remoteName | |||
npx https://github.com/aws-actions/aws-codebuild-run-build.git -p ProjectName -r remoteName |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Intentional change? If so, why?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because the package has not been published to npm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Understandable. This can be shortened however:
npx https://github.com/aws-actions/aws-codebuild-run-build.git -p ProjectName -r remoteName | |
npx aws-actions/aws-codebuild-run-build -p ProjectName -r remoteName |
@robin-aws Yes, it will echo each build in the batch. |
Is there any update to when this might be merged and released? |
Any update here? |
So, any movement on this one? The main reason I want to use AWS codebuild is for parallel batch testing |
CodeBuild supports batches.
A single buildspec can kick off several batches.
This adds support for both running as a command line as well as running as a GitHub action.
Additional
npx
commandBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Check any applicable: