-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Add linux-ppc64le Architecture Support in Build Configuration #1527
Conversation
The workflows would need to be updated to support the new platform. At least, adding a new OS at vscodium/.github/workflows/stable-linux.yml Lines 124 to 131 in 272f67d
A GitHub Action Runner supporting that architecture will be required. Then, more testing will need to be done. |
What would be the requirements for the Runner? I pocked around and found this link. |
I've found this: https://github.com/orgs/community/discussions/24921 Which desktop is running ppc64le? |
I've modified the actions to include some tasks to build for
I'm currently using the native macOS client to connect to a remote |
Should you focus only the
|
I've pushed the changes I believe are necessary for building |
|
IT WORKS!!!!! 🚀 |
Me and a few others will be using this for a few days to test how stable it is, but I'm optimistic that this is going to make a lot of people happy. |
Since you made the PR, I was happy to help. 😉 |
Summary
This pull request introduces support for building VSCodium on the
linux-ppc64le
platform.Changes
A new build target for the
linux-ppc64le
platform has been added togulpfile.reh.js
:Motivation
The
linux-ppc64le
(PowerPC 64-bit Little Endian) platform is commonly used in high-performance computing environments and by the scientific community. There have been numerous requests for Microsoft's VSCode to support this platform, but progress has been slow. By adding support forlinux-ppc64le
in VSCodium, we are satisfying a previously unfulfilled need within the community. This not only serves those who have been requesting this feature but also makes VSCodium more accessible to those using this architecture in scientific and research contexts.Testing
Before merging this pull request, it's important to test the build process on a linux-ppc64le system to ensure the functionality works as expected. Any volunteers or guidance on accomplishing this would be greatly appreciated.