this post was submitted on 28 Mar 2025
2233 points (99.2% liked)

Technology

68187 readers
3921 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


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

What's wrong w/ actions? Is there something else you prefer?

I think they're quite powerful. There are a variety of triggers, runners are fairly easy to configure (easy to scale up), and the syntax is pretty straightforward. It seems to work pretty well.

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

Every other ci in existence you just write a command. Then if it doesn't work you run the command on your machine and fix it.

Actions are "magic" which means you have to fake the ci runner with tools and reverse engineer the action to run local debugging and if it failed you might not even fully know what was running with digging into the actions source.

GitHub provides you the tools and their "easy" until they aren't.

It's very Microsoft though. It feels like trying to write a Windows app and trying to get your random Net environment definition to line everything up and compile in VS then hoping the same thing happens when you deploy.

[–] [email protected] 7 points 5 days ago

You can just write bash scripts in your actions if you want them to be easily replicatable on your local machine, so you don't really lose anything with that system.

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

I prefer Gitlab CICD but there are many. Actions had a lot of potential. Then Microsoft bought GitHub and just slapped the Actions label on their CI. If you pull off the mask, it is just Azure devops.

[–] [email protected] 2 points 5 days ago

I do too. I kinda miss Jenkins but a lot of the conveniences in GitLab's CI are really nice and it's better for 99% of use cases.