Add ppc64le support. - #8612
Closed
Sunidhi-Gaonkar1 wants to merge 1 commit into
Closed
Conversation
Sunidhi-Gaonkar1
requested review from
andyfeller
and removed request for
a team
January 23, 2024 07:21
Contributor
|
Thanks, @Sunidhi-Gaonkar1; as @williammartin expressed #8611 (comment), we are working both through the issue and internally to understand what might be involved and whether we have the capabilities of supporting this. |
Contributor
|
@Sunidhi-Gaonkar1 : unfortunately, GitHub doesn't have any PowerPC-based options with GitHub Actions to make supporting PowerPC viable. As I'm going to close this PR for now while we can leave any issues open in a blocked state. Thank you again for the interest and contribution! ❤️ |
MingcongBai
added a commit
to MingcongBai/cli
that referenced
this pull request
Aug 3, 2026
Add Linux binary release targets for loong64, ppc64le, and riscv64, these are architectures that are available both as desktop and server products. It is also reasonable to assume that they are used by developers as host machines, where this CLI tool would have been used. This commit is made with the understanding that GitHub has no interest in limiting usage of hardware of architectures other than x86, x86-64, Arm32, and Arm64. Given that GitHub CLI is largely an architecture-agnostic tool (at least with its built-in functionalities), that adding binary releases is rather trivial with GoReleaser, that Golang support is quite mature (and actively maintained) for the three architectures above, and that i386 is still a supported architecture where host machines of strictly 32-bit x86 architecture are likely even more obscure, so add them. Link: cli#14012 Link: cli#9410 Link: cli#8612 Link: cli#8611 Link: cli#3615 Link: cli#1724 Signed-off-by: Mingcong Bai <jeffbai@aosc.io>
MingcongBai
added a commit
to MingcongBai/cli
that referenced
this pull request
Aug 3, 2026
Add Linux binary release targets for loong64, ppc64le, and riscv64, these are architectures that are available both as desktop and server products. It is also reasonable to assume that they are used by developers as host machines, where this CLI tool would have been used. This commit is made with the understanding that GitHub has no interest in limiting usage of hardware of architectures other than x86, x86-64, Arm32, and Arm64. Given that GitHub CLI is largely an architecture-agnostic tool (at least with its built-in functionalities), that adding binary releases is rather trivial with GoReleaser, that Golang support is quite mature (and actively maintained) for the three architectures above, and that i386 is still a supported architecture despite host machines of strictly 32-bit x86 architecture likely being even more obscure, so add them. Link: cli#14012 Link: cli#8611 Link: cli#9410 Link: cli#8612 Link: cli#3615 Link: cli#1724 Signed-off-by: Mingcong Bai <jeffbai@aosc.io>
6 tasks
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.
Hi team, In reference to #8611 , adding support for ppc64le. Thank you.