Ask HN: Looking for a CI/CD project for my local lab

Hello, I have a couple of computers in my home that I use to build and test whatever I am working on. The problem is that I currently do everything over "manual ssh/scp" (some basic bash scripting).

I was wondering if anyone uses some kind of of local CI software to automate this process: pick my source code, send it to a machine, run some commands and show me the log (I am ok with doing it over ssh under the hood). Any tips?

Thanks in advance.

3 points | by q8zd3 1 hour ago

4 comments

  • KomoD 3 minutes ago
    You could run Woodpecker, maybe? https://woodpecker-ci.org
  • y2244 16 minutes ago
    Take the time to read up on CI/CD

    Lots of different options, hosted and self hosted.

    Github actions and GitLab are two of the more common ones, the latter is self hosted but the former is the dominant one if CV skills is needed

  • spacemule 1 hour ago
    I use webhooks to argo events that trigger argo workflows on a small k3s cluster on my desk. You could do the same even with a single node cluster.
  • turtleyacht 1 hour ago
    Github lets you start up a self-hosted runner.