this post was submitted on 20 Mar 2025
39 points (100.0% liked)

Programming

19139 readers
47 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 [email protected]



founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 4 days ago (2 children)

Actions are fine for very simple repos.

Gitlab CI is a dream, definitely my preference at work.

Jenkins can be okay or horrible depending on the setup.

[–] [email protected] 1 points 3 days ago* (last edited 3 days ago)

Jenkins is neat if you use a shared repo. Yes, the functions are weird (a file is a function, and the function inside is named call.), but having a default list of *Pipeline.Jenksfile (ingestionPipeline, modelPipeline, parserPipeline, dataProductPipeline, etc - data engineer here) is so nice. You can also specify which branch of that repo you are running as well!

It's less neat if you previously had to migrate off of a Jenkins that had everything running as root, to a Jenkins that doesn't.

At least if you fix a bug for a function that's used in multiple pipelines, it's fixed everywhere. Or if you fix a bug in a single pipeline, it's fixed for multiple repos.

edit: the Groovy language isn't great though. Not being able to pass kwargs in my own order, unclear how to define the pipeline (somewhat lacking docs, grabbing working examples from SO). I wish something like Python would've been used instead.

[–] [email protected] 4 points 4 days ago

What makes GitLab CI better than GitHub Actions in your eyes?

I've not extensively used either, and GitLab CI has been a while, but they felt pretty similar. I had put them into the same category.

We use Jenkins at work. I administrate it. For the most part, I find it horrendous.