-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Expanded platform support: Consider porting to go or typescript #243
Comments
I reckon sticking with Node.js is the way to go since most of the action landscape is written in javascript; meaning that even if you would "switch .NET for go", you would be restricted to where node.js can run. |
@jbergstroem - yeah, we're mostly restricted to running where node. However, if there's a platform that go runs on but node doesn't it could still support |
Makes sense but I think it would be a confusing user story. All documentation now would have to take this exception into regard; "works except here", "works only there". I would personally prefer a consistent functionality across runners. |
It would be covered in one place - the runner download experience. That's would also be part of the design and analysis when we choose to start this work. |
|
Great to see this. I've experimented with pure Go GitHub actions using a thin NodeJS wrapper - from a dependency perspective Go is a great story (as well as being cross-platform). At the bottom of the blog post I sketched out what v1 of a pure Go solution might look like:
This disadvantage of v1 is that it requires an uncached build step for each action. But that could easily be fixed in v2 where you have a simple internal GitHub service that cached and served pre-built cross-platform binaries for |
@myitcv, in terms of providing cache for built Go modules, it is worth pointing out that in GitHub Actions currently even Docker images do not have any cache. With each use of the Docker action, the container image is built from the beginning. |
@ad-m I'll defer to you/others on how things currently work 😄 My suggestion re caching was, as I tried to indicate via the "v2", a suggestion of how an initial first cut "v1" could be improved further down the line. Absolutely not critical for v1. |
@myitcv - let's keep considerations of supporting go actions natively in another issue. I want to keep this issue focused on the runner code. |
@bryanmacfarlane 👍absolutely. Is there an open issue I should follow? Or would you like one created? If so, another issue in this repo or elsewhere? |
Go ahead and create one. I guess here is the best place :) |
@bryanmacfarlane raised as #333. |
If there are problematic platforms or architectures for Node.js, that's something I can look into. We (the Node.js project) are interested in using Actions for our CI matrix. We already test on a fairly wide range of platforms and architectures (z/os, aix, freebsd, os390, ppc64, etc.) |
I would suggest to write a runner in C++ using e.g. Boost.Asio. This should work on almost any platfrom and architecture. |
Any language is fine as long as the platforms we want to support are supported. In any cases, we must make clear paths and move forward if we do this. |
Since this issue dates to 2019, curious if still planned anytime soon or years away if ever. Considered using this project but got discouraged when I saw .Net is involved. Don't want to make life tougher with unpleasant dependencies. We'll consider using Github's own runner functionality for now rather than using this self hosted project. |
For now we don't have plans to take on rewriting the runner. for reference @edrozenberg this is the code for the github runner itself (hosted and self hosted). |
Rewriting the runner is likely to be a lot of work, but it would be beneficial if the the protocol that the runner talks could be cleanly documented. This would allow for third-party implementations for self-hosted pools. |
Took the liberty of opening a new issue to track this. |
I successfully reverse engineered their undocumented protocol and used act to write a runner prototype in go. |
Based on the workflow of libchewing [1]. Compared to .travis.yml, some stuffs are not included: * ppc64le builds: not possible on GitHub Actions yet [2] * ccache: I assume it's not needed for such a small project [1] chewing/libchewing#349 [2] actions/runner#243
Power PC, Solaris, IBM Mainframe, redhat 5/6 (without a new sku) etc.
Start with an ADR evaluation of platform coverage
The text was updated successfully, but these errors were encountered: