-
Notifications
You must be signed in to change notification settings - Fork 959
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
Support self-hosted runner on linux-s390x platform #2263
Comments
Draft PR to implement actions#2263
I am very much looking forward being able to run actions-runner natively on s390x. Being able to run on s390x, on top of testing the architecture itself, allows us to ensure that the code does not assume a specific endianess as now the code can be built and tested on both little-endian arch (x86) and big-endian arch (s390x). This is critical for any system softwares, any protocol development, or anything touching network wire-format in general. For kernel related projects, this helps ensure that developers can easily have their changes tested on multiple architectures and are not inadvertently breaking other arch. Again, this support would be greatly appreciated. |
GitHub Action for s390x architecture (Experimental) version is available at Gold-Bull/github-actions-runner. Currently auto-updates are not available. |
Thanks @SaileshBellamkonda It would be great to get this officially released by the authoritative repo though. @TingluoHuang is there a chance to get this as part of official releases? s390x is very useful to test big-endian architectures. |
I appreciate the efforts in the PR #2264 to make it possible to support s390x in runner, it would be great if it can be included in the features list. @TingluoHuang @thboop @fhammerl @nikola-jokic is it possible the PR get reviewed and committed if there is no problem? |
Draft PR to implement actions#2263
Describe the enhancement
We've received requests from various open-source projects hosted on GitHub that would like to support Linux on IBM zSystems (the
s390x
architecture), but would prefer to integrate the platform into their existing GitHub action based CI environment to do so.Our platform is not currently supported by any GitHub hosted runner, and it the runner source code (in this repo) does not build and work out of the box on our platform either. The intent of this feature request is to propose, discuss and agree upon changes to the runner code to make the latter possible.
Additional information
The major dependency of the runner is of course .NET support. Our platform has been supported by the .NET open-source project since the .NET 6 release (using a RID of
linux-s390x
). However, this is considered a "community-supported" platform by Microsoft, which means in particular that Microsoft does not provide and/or support binary builds of the .NET SDK and runtime for the platform.However, it is possible to build the .NET SDK and runtime from source, and several Linux distributions are already doing so, providing a set of .NET packages that work on
s390x
. This currently applies to RHEL, Fedora, and Alpine - with hopefully more to follow.Using those packages, it is possible to build the runner. However, this does not quite work out of the box, since there are some differences between using distro-provided packages and using the Microsoft builds (which the runner build process currently relies on):
dotnet-install.sh
script used to download a pre-packaged SDK image does not work since Microsoft does not provide these pre-packaged images for community-supported architectures.Microsoft.NETCore.App.Runtime.$(RID)
) from nuget.org. These are likewise not available for community-supported architectures.global.json
script requires a minimum .NET version of6.0.300
to build the runner application. The distro-provided packages are generated using the "source-build" method, which currently only supports building the6.0.1xx
feature band, so there is no6.0.300
available.In addition to changes required to handle the above differences, we've needed to make several further changes:
Constants.Architecture
enum).s390x
version of the node.js runtime.runner
application itself provided by GitHub, the "self-update" mechanism does not work and cannot be tested.I'll open a draft PR shortly that includes a set of changes addressing all the above. Using this PR I'm able to build current mainline and successfully execute the test suite (using the dotnet packages on a
s390x
RHEL 8.6 system):Some of the changes will definitely need further rework to become acceptable for upstream inclusion. I'll be happy to work on that, but would appreciate input on how this should look like in the end. Thanks in advance for your help in supporting our platform!
Future direction
If we can get the above questions resolved and a PR accepted into mainline, users would be able to build the runner on
s390x
from source out of the box. However, it would be even more comfortable if pre-built binaries were available directly from GitHub. Not only would that make initial installation much easier, it would also enable the automated update process to work like it does on other platforms (at least for the runner application itself - for the dotnet runtime, the distro-specific updates would have to be used).I understand this will likely not be available initially, but I'd also appreciate any comments on whether you see any possibility to get there in the future.
The text was updated successfully, but these errors were encountered: