VOOZH about

URL: https://thenewstack.io/ci-vs-cd-explained-by-emoji-part-1-continuous-integration/

⇱ CI vs. CD Explained by Emoji: Part 1, Continuous Integration - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2021-05-21 06:05:56
CI vs. CD Explained by Emoji: Part 1, Continuous Integration
contributed,sponsor-armory,sponsored,sponsored-post-contributed,
CI/CD / DevOps

CI vs. CD Explained by Emoji: Part 1, Continuous Integration

In this pizza analogy, with continuous integration, developers are chefs in a centralized kitchen, constantly experimenting with new ingredients.
May 21st, 2021 6:05am by Margaret Francis
👁 Featued image for: CI vs. CD Explained by Emoji: Part 1, Continuous Integration
Armory sponsored this post. Insight Partners is an investor in Armory and TNS.
Margaret Francis
Margaret is president and chief operating officer of Armory, and a seed investor in minority and women-led businesses. Previously she was senior vice president for product and general manager of Heroku. She holds a bachelor's degree from Yale University and an MFA from SFAI. For fun, she reads a lot of science fiction and plays with her kids.

Technological change this century is expected to accelerate at a rate most of us will find shocking. DevOps principles and culture are the de facto standard for innovative businesses. For DevOps to be effective, it must be paired with specialized tools, which is why continuous integration/continuous delivery (CI/CD) has become another driving force for change. But confusion remains about what CI/CD means, the differences between CI and CD, and how they are implemented.

CI/CD covers the software lifecycle from when a developer commits code 🧀🍅🥓🍍 to when that code is released into production. If CI/CD were a pizza delivery business (because why not), it would cover the entire process from putting all the ingredients together for making a new pizza recipe 📃, cooking it, checking its quality, through to delivery to someone’s door.

👁 Image

Admittedly, in this pizza analogy, our “CI/CD Pizza (Git)Hut Company” would be the Amazon of pizza delivery. The company would be working at scale and highly automated. It would have an industrial R&D kitchen with a team of chefs throwing together different ingredients, concocting new recipes and cooking pizzas at a rapid rate every day. Each pizza created from a recipe would be run through rigorous QA testing and verification tests, conveyed along automated belts, boxed and swiftly delivered out the back of the store as piping hot pizza to hungry customers. Essentially, what this tells you about CI/CD is that it thrusts products into production much faster after thorough testing and leaves legacy companies in the dust.

👁 Image

To understand how CI/CD works, you need to know that the continuous integration (CI) component of CI/CD is focused on the development stage. The developers are the chefs in working in a centralized kitchen, constantly experimenting with new ingredients.

👁 Image

CI works on the basis that the latest stable build of the software is available at all times, sitting in a centralized repository. CI also expects our team of developers to be working on the same main branch and frequently making code changes, often daily, that are committed to the main branch. We could describe the stable build as our secret, award-winning-but-constantly-evolving-pizza recipe.

👁 Image

If you like, the code commits are new pizza ingredients that chefs are trying out to produce a fresh and better-tasting pizza. Like code commits, the ingredients can be anything that adds to a product, so a flour mix for the dough could be replaced with cauliflower, for instance, to create a different type of pizza. Similarly, a feature that makes an app work on a different operating system, for example, creates a new artifact that’s centrally stored.

Armory enables enterprise companies to ship better software, faster through trusted, reliable, safe, and secure deployments. At its core, Armory is powered by the open source software, Spinnaker. Armory and TNS are under common control.
Learn More
The latest from Armory

As you would expect, CI has an emphasis on frequent code check-ins, and each check-in is verified by creating and testing 🥄 a new build.

👁 Image

When a developer is ready to commit new code, the usual approach is to pull down the latest stable build 📃, test it locally to ensure it works 🥄, and integrate the new code 🥣 to create a new build. In the same way that an individual chef would taste-test their latest creation, a dev runs their own tests locally on their new creation as early as possible in the process to ensure quality is maintained.

👁 Image

Manual Integration

CI tools help automate this agile approach to development and establish a predictable process so developers can work together on the same project. CI automates 🤖 the developer’s testing. (Time for a coffee and doughnut break or a walk in the park.) Once a developer is satisfied, the build is submitted to an integration server. This minimizes code conflicts since code is reviewed and tested again on the integration server and any issues are fed back to the team.

👁 Image

Continuous Integration

As a stable build always exists in a central repository, any code commit can be reverted to the last-known working build if testing goes wrong or an issue arises.

👁 Image

Jenkins is a good example of a CI integration server, as it integrates with many tools and plugins in both the CI and CD ecosystem.

👁 Image

This means it can be extended beyond CI into CD, but CD is an extension beyond its original design — it wasn’t made for cloud deployment, which means that external scripts ✍️ are required.

👁 Image

Read Part 2, where we cover the role of continuous delivery and continuous deployment, the differences between the two, and — stretching our analogy even further — how to make pizzas at scale that are better than mamma used to make.

Armory enables enterprise companies to ship better software, faster through trusted, reliable, safe, and secure deployments. At its core, Armory is powered by the open source software, Spinnaker. Armory and TNS are under common control.
Learn More
The latest from Armory
TRENDING STORIES
Margaret is president and chief operating officer of Armory, and a seed investor in minority and women-led businesses. Previously she was senior vice president for product and general manager of Heroku. She holds a bachelor's degree from Yale University and...
Read more from Margaret Francis
Armory sponsored this post. Insight Partners is an investor in Armory and TNS.
SHARE THIS STORY
TRENDING STORIES
TNS owner Insight Partners is an investor in: Pragma, Armory.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.