Adding RISC-V 64-bit Support in Chromedriver #526
Replies: 3 comments 6 replies
|
@Jay-Lokhande Supporting RISC-V does align with what this project does. I have a few concerns to be able to effectively add it.
That's about it. |
|
@giggio Thank you for your thoughtful response Here are my answers to your questions: 1. The Chrome team does not currently provide a binary for RISC-V 64-bit on Chrome for Testing. That page lists support for architectures like x86_64 and ARM64, but RISC-V is not included. 2. GitHub Actions does not officially support RISC-V runners, as noted in this issue (Supporting Runners on 64-bit RISC-V). However, community efforts like self-hosted runners for RISC-V indicate it’s possible with additional setup. 3. I added a check for I would appreciate guidance on specific areas of the codebase or potential edge cases that I should consider. |
|
FYI: I am starting to release unofficial Chromium and chromedriver binaries for riscv64 at https://github.com/riscv-forks/chromium-riscv |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello,
I’ve been working on cross-compiling CouchDB for the RISC-V 64-bit architecture. While doing so, I ran into an issue with the Fauxton web based interface, which uses Chromedriver. When I tried to compile, I got an error saying that
Only Linux 64-bit is supported. To fix this, I added support for RISC-V 64-bit in the Chromedriver configurationinstall.js, and after making this change, I was able to successfully compile and run CouchDB on a RISC-V system.Before I commit this change and create a pull request, I wanted to check with the maintainers to see if this is something I should proceed with. Here’s what I’d like to know:
Does adding RISC-V 64-bit support align with the project’s goals or benefit other users?
Are there any specific requirements or steps I should follow if I were to submit this change?
I’d really appreciate your feedback on whether this is a good idea to include in the repository and if I should go ahead with a pull request. Thanks so much for your time and guidance!
Best regards,
Jay
All reactions