this post was submitted on 27 Mar 2026
36 points (100.0% liked)

Programming

26250 readers
600 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
 

Why GitHub Actions is the Internet Explorer of CI, and why Buildkite offers a better path forward for teams that care about developer experience.

top 5 comments
sorted by: hot top controversial new old

This story alone was enough to cause me to abandon GitHub actions permanently. I’d have easily gotten bitten by that had I expanded CI to the extent that these gigantic companies are using it.

[–] jtrek@startrek.website 3 points 2 hours ago

Sounds about right.

I'm using GitHub actions at work because this place is extremely dysfunctional, and I can just add GitHub actions without it being a whole "research spike planning meeting impact analysis" six week journey.

I took it from "there are absolutely no checks and Bob broke the environment because he pushed up a change that's just invalid syntax" to... well, I couldn't make it block the build on failures but at least now when Bob breaks it again I can point to the big red X and ask why he merged with an error.

[–] hallettj@leminal.space 9 points 5 hours ago

Well, I'm in that Nix shop category. For example, I run tests for my OSS project using lots of Python versions. There's no need to use a Github Actions matrix for that - Nix does it more efficiently. Doesn't even require containers or VMs. And the whole setup runs exactly the same locally, on Github Actions, or on Garnix. (But Garnix has better Nix caching than other CI runners, so that's what I use.)

[–] howmuchlonger@lemmy.org 9 points 5 hours ago

TLDR; people are idiots. Dependencies are stealing your data. Write your own CI and stop being a lazy fuck.

[–] mesamunefire@piefed.social 6 points 5 hours ago

Im not sure about the CI solution they are recommending, but I do agree there are some sharp edges to GH Actions. Its not the greatest at logs and had hidden issues all over the place.