actions / runner

The Runner for GitHub Actions :rocket:
https://github.com/features/actions
MIT License
4.65k stars 898 forks source link

Support self-hosted runner on linux-s390x platform #2263

Open uweigand opened 1 year ago

uweigand commented 1 year ago

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):

In addition to changes required to handle the above differences, we've needed to make several further changes:

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):

  Passed!  - Failed:     0, Passed:   549, Skipped:     0, Total:   549, Duration: 31 s - /home/uweigand/runner/src/Test/bin/Debug/net6.0/Test.dll (net6.0)

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.

chantra commented 1 year ago

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.

SaileshBellamkonda commented 1 year ago

GitHub Action for s390x architecture (Experimental) version is available at Gold-Bull/github-actions-runner.

Currently auto-updates are not available.

chantra commented 8 months ago

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.

huoqifeng commented 4 months ago

I appreciate the efforts in the PR https://github.com/actions/runner/pull/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?