-
Notifications
You must be signed in to change notification settings - Fork 428
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
Enable support for s390x in conda-build #3949
Conversation
We require contributors to sign our Contributor License Agreement, and we don't have one on file for @pradghos. In order for us to review and merge your code, please e-sign the PDF at https://conda.io/en/latest/contributing.html#conda-contributor-license-agreement. We then need to manually verify your signature. We will ping the bot to refresh the PR status when we have confirmed your signature. |
We require contributors to sign our Contributor License Agreement, and we don't have one on file for @pradghos. In order for us to review and merge your code, please e-sign the PDF at https://conda.io/en/latest/contributing.html#conda-contributor-license-agreement. We then need to manually verify your signature. We will ping the bot to refresh the PR status when we have confirmed your signature. |
Looks good to me. @pradghos would it be possible for you to sign the Contributor License Agreement? If you already have let me know and I'll take a look. |
conda_build/convert.py
Outdated
@@ -763,7 +764,7 @@ def conda_convert(file_path, output_dir=".", show_imports=False, platforms=None, | |||
source_platform_architecture = '{}-{}' .format(source_platform, architecture) | |||
|
|||
if 'all' in platforms: | |||
platforms = ['osx-64', 'linux-32', 'linux-64', 'linux-ppc64', | |||
platforms = ['osx-64', 'linux-32', 'linux-64', 'linux-ppc64','linux-s390x', |
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.
Minor, but might be nice to swap the order of ppc64le
and s390x
here to keep the two ppc*
arch's together in the list.
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.
@hartb : I have addressed this comment in the latest commit. Thanks!
was on vacation .. I will come back to this PR soon ! Thanks! |
We require contributors to sign our Contributor License Agreement, and we don't have one on file for @pradghos. In order for us to review and merge your code, please e-sign the PDF at https://conda.io/en/latest/contributing.html#conda-contributor-license-agreement. We then need to manually verify your signature. We will ping the bot to refresh the PR status when we have confirmed your signature. |
We require contributors to sign our Contributor License Agreement, and we don't have one on file for @pradghos. In order for us to review and merge your code, please e-sign the PDF at https://conda.io/en/latest/contributing.html#conda-contributor-license-agreement. We then need to manually verify your signature. We will ping the bot to refresh the PR status when we have confirmed your signature. |
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.
Looks good to me, for whatever that's worth. :) Thank you!
Please let me know in case of any review comments to address further. Thank you very much ! |
@cla-bot check |
The cla-bot has been summoned, and re-checked this pull request! |
LGTM, thanks @pradghos |
Hi there, thank you for your contribution! This pull request has been automatically locked because it has not had recent activity after being closed. Please open a new issue or pull request if needed. Thanks! |
Addressing : conda/conda#9791
Enable support for
s390x
inconda-build
.