this post was submitted on 13 Jul 2023
73 points (98.7% liked)

Programming

17022 readers
233 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 1 year ago
MODERATORS
top 8 comments
sorted by: hot top controversial new old
[–] [email protected] 9 points 1 year ago (2 children)

GitHub is so far behind GitLab in CICD it's not even funny

[–] [email protected] 4 points 1 year ago (1 children)

Is this feature available on GitLab?

[–] [email protected] 9 points 1 year ago (1 children)

IIRC, Gitlab labels it “merge train”

[–] [email protected] 5 points 1 year ago (1 children)

Thanks! Unfortunately, my company is a cheapskate, so I don't get to use it... It's available on the premium tier.

[–] [email protected] 1 points 1 year ago

I wish the premium paid features were available for free on public repos. I mean my public repos are not real free and open source projects. I'm just learning and playing around but if you let me use premium features maybe some day I can pester my boss to get them at work

[–] [email protected] 2 points 1 year ago (1 children)

i think quite the opposite… gitlab ci is very last-gen: github actions is where everyone in ci will be headed from now on!

[–] [email protected] 1 points 1 year ago (1 children)

Why do you think it's better? Genuinely wondering

[–] [email protected] 3 points 1 year ago

i think that the idea of actions (actions the concept not actions the product) is a really good way of building CI pipelines…

we all know that shell scripts are rubbish, so building your CI pipeline out in composable steps written in a proper language is much more robust

having those steps maintained by the open source community inside a marketplace is also excellent! you don’t need to manage things like setting up AWS variables, managing refresh tokens, etc: you can use an action just by referencing it, easier than you’d install a package… and those actions can use well-maintained open source libraries to do their jobs

there’s a whole lot more, but all the reasons basically revolve around the fact that the composable units written in a modern language shared with everyone is so, so much better than chaining bash scripts together: even if they can be run inside containers (which GHA can do too)

(also, i’ve found github actions much faster than gitlab ci… not comparing runner speed because obviously that’s highly dependent on what you host it in; just time to pick up jobs and time to start the agent)