-
Notifications
You must be signed in to change notification settings - Fork 1.2k
guix: Default to building for some supported HOSTs only #6388
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -73,8 +73,19 @@ mkdir -p "$VERSION_BASE" | |
| # Build directories should not exist | ||
| ################ | ||
|
|
||
| # Default to building for all supported HOSTs (overridable by environment) | ||
| export HOSTS="${HOSTS:-x86_64-linux-gnu arm-linux-gnueabihf aarch64-linux-gnu riscv64-linux-gnu powerpc64-linux-gnu powerpc64le-linux-gnu | ||
| # Supported HOSTs: | ||
| # aarch64-linux-gnu | ||
| # arm-linux-gnueabihf | ||
| # arm64-apple-darwin | ||
| # powerpc64-linux-gnu | ||
| # powerpc64le-linux-gnu | ||
| # riscv64-linux-gnu | ||
| # x86_64-apple-darwin | ||
| # x86_64-linux-gnu | ||
| # x86_64-w64-mingw32 | ||
|
|
||
| # Default to building for some supported HOSTs only (overridable by environment) | ||
| export HOSTS="${HOSTS:-x86_64-linux-gnu aarch64-linux-gnu riscv64-linux-gnu | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider b58a3b6
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you mean in addition to changes in
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Replacement, I think we should keep upstream code intact as much as we can and add restrictions through CI or our containers
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I disagree, mostly, because very little if any of my automations use the guis-start. They all use guix-buidl
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Needs a couple of additional fixes but, yeah, it could work. Pls check #6390. |
||
| x86_64-w64-mingw32 | ||
| x86_64-apple-darwin arm64-apple-darwin}" | ||
|
|
||
|
|
||
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.
should we ask in community if anyone has powerpc64 or arm32 to test? maybe there's non-zero demand for it? So far as build succeed, probably the binaries may work as well