Skip to content
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

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

dhasani23
Copy link
Contributor

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.


  • Treat all work as PUBLIC. Private feature/x branches will not be squash-merged at release time.
  • Your code changes must meet the guidelines in CONTRIBUTING.md.
  • License: I confirm that my contribution is made under the terms of the Apache 2.0 license.

@dhasani23 dhasani23 requested review from a team as code owners March 12, 2025 00:38
Copy link

  • This pull request implements a feat or fix, so it must include a changelog entry (unless the fix is for an unreleased feature). Review the changelog guidelines.
    • Note: beta or "experiment" features that have active users should announce fixes in the changelog.
    • If this is not a feature or fix, use an appropriate type from the title guidelines. For example, telemetry-only changes should use the telemetry type.

@@ -567,22 +579,21 @@ export class GumbyController {
await startTransformByQ()
}

// only for Language Upgrades
private async validateBuildWithPromptOnError(message: any | undefined = undefined): Promise<void> {
Copy link
Contributor Author

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> {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dhasani23 dhasani23 marked this pull request as draft March 12, 2025 00:59
const buildResultsManifest = {
capability: 'CLIENT_SIDE_BUILD',
exitCode: exitCode,
commandLogFileName: 'clientBuildLogs.log',
Copy link
Contributor Author

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant