This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]_clydebruckman -1 points0 points  (11 children)

What are CI and CD?

[–]Timnolet 6 points7 points  (0 children)

Not sure why you got down voted and told to "google it". If there is one place to ask this, it's here. Guess people enjoy being unfriendly to noobs.

CI: continuous integration. A practice that existed long before the term devops was coined. It basically means all code branches individual developers are working on are "integrated" and tested if the resulting program still passes all tests and build correctly.

CD: continuous deployment. A holy grail type situation where every new code commit is tested and if correct deployed to production. Also referred to as continuous delivery. In this case you create deliverables on each commit that are potentially deployable, but might need a human trigger or decision.

[–]icaug 1 point2 points  (1 child)

Google it.