-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Correct failure of netty build component on s390x (due to zip -qd needing something to delete) #10643
Conversation
6b221a3
to
6f490be
Compare
Jonathan, It looks like we have to follow a different merge process for patches that include Does that ordering sequence work and do you mind setting up the PR structure that way? |
@gregestren Yes, that works. Go ahead and merge Do I need to undo the third_party/BUILD changes in this branch for that to work? |
I believe it's okay as-is. I'll try to merge - I'll add a comment here if anything doesn't work. |
This patch is in - ready for third_party/BUILD when you are. |
@gregestren Perfect. I'll rebase and submit a new pull request later today. Kinda busy doing my "real job" this morning. |
Continuation of PR #10643 for application to third_party directory Build on s390x fails because the process to remove unnecessary libraries from netty was not configured for x86. As a result, zip -d failed because it had nothing to remove. This PR does two things: Adds conditions for s390x to the src and third_party BUILD files, and Adds a condition to the genrule so that 'zip -d' does not execute if there's nothing to do. See also Issue #9263; Pull Requests #9346 and #9945 Closes #10798. Signed-off-by: Philipp Wollermann <philwo@google.com>
Build on s390x fails because the process to remove unnecessary libraries from netty was not configured for x86. As a result, zip -d failed because it had nothing to remove. This PR does two things:
See also Issue #9263; Pull Requests #9346 and #9945