-
Notifications
You must be signed in to change notification settings - Fork 14
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
Create a proof-of-concept self-hosted runner for Github Actions #66
Comments
I'm just curious that how many workers/bots are sufficient for LLVM project. I had built a few internal CI for LLVM. It taks ~15mins for clean build and ~10mins to run the regression tests on 52 core Xeon 2.5GHz / 200GB RAM VM. |
I guess that mostly depends on which and how many configurations we want to
build...
…On Fri, Aug 20, 2021 at 9:31 AM Wei Wu ***@***.***> wrote:
I'm just curious that how many workers/bots are sufficient for LLVM
project. I had built a few internal CI for LLVM. It taks ~15mins for clean
build and ~10mins to run the regression tests on 52 core Xeon 2.5GHz /
200GB RAM VM.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#66 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEYJMCAWKNQPVHIUKZMKNBTT5YAERANCNFSM5CPTBHMA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email>
.
|
So I've create two type of runners for a downstream llvm repo. Turns out the runner for github actions (or post commit runners) are kinda easy to set up: I just followed the github docs and the commands showed in the setting tab of the repo. CI for pull requests are a bit complicated. I forked the runner that the riscv v8 team used, and set up a CI runner for pull requests successfully. the repo is here. It written in JavaScript, and the source code is kinda straight forward. feel free to check it out. |
Are you interested in using your runner for some release branch testing? |
There is some interested in setting up a self-hosted runner on Mac hardware, so we are going to request Mac resources from the LLVM Foundation. |
Yes. Will do. I can set up 2~3 runners in next week. |
I have two mac mini for (RISC-V) CI purpose. turned out that neither the x86 mini or M1 mini with the 8GB memory could not build LLVM quickly enough. for pre or post commit CI. IMHO the iMac or Mac Pro might suit. If we just want to a nightly build, then it would be ok to use mac mini as a start. |
@lazyparser The Github runners take 2hr 20min to build and run make check for llvm (and no other sub-projects). Anything that is faster than that would be an improvement. |
It takes 7-10 minutes for building (clang+llvm on x86 and RISCV) and 8-12 minutes for regression testing on the 128c200g VM. For a 32c128g VM it takes 30-35 minutes. These workers(VMs) are idle most of the time, because my team had turned to upstream directly. I'd like to use the VMs for LLVM building. Either adding IWG members to root access or config actions on the VMs myself are good to me. btw thete is yet another daily CI for LLVM created by me: |
Not sure If one project can has multiple build workers. If so, then perhaps I can connect 2 big workers and a few medium workers to github actions. |
So what should to be done next? |
@lazyparser Do you have a runner set up that we can add to the llvm-project repo? |
Yes. For the action, just copy the command list on the action tab (Please send it in private email or other non-public channel). If we want to use self-built runner for PRs, then
We can start from the actions. |
I don't understand what this is, can you clarify? |
If we want to add a new runner for github actions, we can follow For example: Press the You can see several hash string in the command script. That is the secrets/token for the runner which should be keep private. The other way is that I can provide an account on the runner VM, so that you (or other maintainer) can log into the runner VM and run the commands directly. |
meeting on 2021-10-26:
|
We should create a proof-of-concept self-hosted runner for Github Actions and enable it for some of the existing CI jobs in the release branch. Once this is working, we should document how to do this, so that community members can easily create their own self-hosted runners.
The text was updated successfully, but these errors were encountered: