[AURON #2439] Add git to yum install - #2442
Merged
Merged
Conversation
cxzl25
marked this pull request as draft
July 28, 2026 13:26
slfan1989
requested changes
Jul 29, 2026
slfan1989
left a comment
Contributor
There was a problem hiding this comment.
Thanks for the contribution! The changes look reasonable and address the missing git dependency. However, the Build amd64 Releases workflow is still failing, so could you please check the failure and confirm that the original git: command not found issue has been resolved? Also, please complete the “What changes are included” and generative AI disclosure sections in the PR description.
cxzl25
marked this pull request as ready for review
July 29, 2026 04:13
slfan1989
approved these changes
Jul 30, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Which issue does this PR close?
Closes #2439
Rationale for this change
https://github.com/apache/auron/actions/runs/30325123247/job/90213501717
What changes are included in this PR?
dev/docker-build/centos7/Dockerfile: installgitalongside the other build tools(it was previously missing entirely, causing
setup-vendors.shto fail withgit: command not found).dev/vendors/setup-vendors.sh: replacegit -C "${target_dir}" apply --3way "${patch}"with
(cd "${target_dir}" && git apply --3way "${patch}"), so patch application no longerdepends on a git version >= 1.8.5.
.github/workflows/build-amd64-releases.yml: adddev/docker-build/centos7/Dockerfiletothe
pathstrigger list so changes to the build image are validated by this workflow on PRs.Are there any user-facing changes?
No
How was this patch tested?
GHA
Was this patch authored or co-authored using generative AI tooling?