-
Notifications
You must be signed in to change notification settings - Fork 563
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(amazonq): client-side build support #6771
base: master
Are you sure you want to change the base?
Conversation
|
@@ -567,22 +579,21 @@ export class GumbyController { | |||
await startTransformByQ() | |||
} | |||
|
|||
// only for Language Upgrades | |||
private async validateBuildWithPromptOnError(message: any | undefined = undefined): Promise<void> { |
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.
This function is not needed because we can just ask the user for their source and target JDK paths each time, rather than running a shell command just to decide whether or not to prompt them.
@@ -109,37 +107,6 @@ export async function processSQLConversionTransformFormInput(pathToProject: stri | |||
transformByQState.setTargetJDKVersion(JDKVersion.JDK17) | |||
} | |||
|
|||
async function validateJavaHome(): Promise<boolean> { |
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.
const buildResultsManifest = { | ||
capability: 'CLIENT_SIDE_BUILD', | ||
exitCode: exitCode, | ||
commandLogFileName: 'clientBuildLogs.log', |
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.
Does name of this file matter?
Problem
We should perform builds client-side (rather than server-side) to handle customers’ unique / challenging local environments, which often cause our server-side build to fail.
Solution
Periodically download intermediate
diff.patch
files, apply them to a copy of the project, perform the local build, then upload the build logs and resume the transformation.feature/x
branches will not be squash-merged at release time.