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

Mc 37324: Add fallback to 'patch' command when 'git' command is not available #2

Open
wants to merge 15 commits into
base: develop
Choose a base branch
from

Conversation

bubasuma
Copy link
Collaborator

Description

Fixed Issues (if relevant)

  1. magento/magento-cloud-patches#<issue_number>: Issue title
  2. ...

Manual testing scenarios

  1. ...
  2. ...

Release notes

For user-facing changes, add a meaningful release note. For examples, see Magento Cloud Patches release notes.

Associated documentation updates

Add link to Magento DevDocs PR or Issue, if needed.

Contribution checklist

  • Pull request has a meaningful description of its purpose
  • Pull request introduces user-facing changes and includes meaningful updates for any required release notes and documentation changes
  • All commits are accompanied by meaningful commit messages
  • All new or changed code is covered with unit/integration tests (if applicable)

@bubasuma bubasuma requested a review from viktym September 21, 2020 22:26
$this->processFactory->create(['git', 'apply', '--check'], $patch)
->mustRun();
} catch (ProcessFailedException $exception) {
throw new PatchCommandException('Patch cannot be applied', $exception->getCode(), $exception);
Copy link
Collaborator

@viktym viktym Sep 22, 2020

Choose a reason for hiding this comment

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

This error message contains Git error output that is parsed further

$this->conflictProcessor->process($output, $patch, $appliedPatches, $exception->getMessage());

$this->renderer->formatErrorOutput($exception->getMessage())

Actually here

if (preg_match('#^.*?Error Output:(?<errors>.*?)$#is', $errorOutput, $matches)) {

We need to show the customer error details. Maybe it makes sense to add them in this class

/**
* Git patch driver exception
*/
class GitDriverException extends DriverException
Copy link
Collaborator

Choose a reason for hiding this comment

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

GitDriverException and PatchDriverException has the same implementation
Do we need them both? Or just use DriverException?

viktym pushed a commit that referenced this pull request Oct 14, 2020
…cloud-patches-78

[Imported] MC 37324: Add fallback to 'patch' command when 'git' command is not available
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.

2 participants