this post was submitted on 14 Sep 2023
104 points (94.8% liked)

Programming

16971 readers
142 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
 

Let's be honest, the majority here probably has a github account. Some of us are happy as a clam and wouldn't switch no matter what happened, but there are some who would and haven't yet. Why?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 1 year ago (4 children)

What are you on now? Codeberg?

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

What do you use for CICD? And AFAIK federation hasn't been implemented yet, right?

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

I know this will come as a shock to a lot of people, but a lot of software doesn't do CI/CD. Especially CD. Basically only webapps can do CD, although Dropbox is close with weekly releases. A lot of enterprise and industry software still does quarterly or even semiannual releases. Hospitals, banks, and government agencies in particular have stringent vetting procedures that mean they can spend months verifying and approving a new major version before upgrading, so there's no point throwing one at them every couple weeks.

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

Basically only web apps can do CD

CD == Continuous Delivery, which can also mean publishing a new "release candidate" artifact. Maybe there is a more stringent QA system downstream, such as QA teams after a car gets a firmware update to that release candidate.

A lot of enterprise and industry software [...] have stringent vetting procedures that mean they can spend months verifying and approving a new major version before upgrading

This happens on the consumer side too, with risk averse customers, even if they adopt a continuous delivery paradigm upstream. It's also a common argument against a rapid release model, but is often dismantled when appropriate, automated safeguards are put in place. Not always possible to automate everything, due to regulations, but automating the bulk of the tests are in everyone's best interests.

How are those tests triggered? On developer machines? Not very reliable that a human will remember to execute them, even if it was possible to run them all from a workstation. That's why there's a bastion host or, hopefully, set of hosts to run those tests and builds. That's the CI/CD system. That's the value.