DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
View Events Video Library
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Modern Digital Website Security: Prepare to face any form of malicious web activity and enable your sites to optimally serve your customers.

Low-Code Development: Learn the concepts of low code, features + use cases for professional devs, and the low-code implementation process.

E-Commerce Development Essentials: Considering starting or working on an e-commerce business? Learn how to create a backend that scales.

Getting Started With Jenkins: Learn fundamentals that underpin CI/CD, how to create a pipeline, and when and where to use Jenkins.

Related

  • Evolving From Performance Testing to Modern Engineering
  • Testing Swing Application
  • CI/CD Metrics You Should Be Monitoring
  • Continuous Integration and Continuous Deployment (CI/CD) for AI-Enabled IoT Systems

Trending

  • Simplify Java: Reducing Unnecessary Layers and Interfaces [Video]
  • How to Monitor a Spring Boot App With Ostara
  • Chopping the Monolith in a Smarter Way
  • The Most Valuable Code Is the Code You Should Not Write
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. DevOps and CI/CD
  4. Continuous Integration vs. Continuous Deployment

Continuous Integration vs. Continuous Deployment

Continuous Delivery and Continuous Deployment may be extensions of Continuous Integration, but the execution of both processes is the responsibility of a single tool.

Matthew Casperson user avatar by
Matthew Casperson
·
Sep. 21, 23 · Tutorial
Like (3)
Save
Tweet
Share
1.9K Views

Join the DZone community and get the full member experience.

Join For Free

The terms Continuous Integration and Continuous Delivery/Deployment tend to be combined into the acronym CI/CD to describe the process of building and deploying software, often without distinction between the two. The terms describe distinct processes, even if combining them suggests that Continuous Delivery and Continuous Deployment are an extension of Continuous Integration and the execution of both processes is the responsibility of a single tool.

Assuming CI/CD is just CI with a deployment step ignores some fundamental differences between the two processes. In this post, we look at:

  • The reasons why CI and CD are distinct processes.
  • The features provided by good CD tools.
  • Why you may consider using separate tools for your CI/CD workflow.

What Is Continuous Integration?

At a high level, Continuous Integration tooling is concerned with:

  • Taking the code written by developers and compiling it into an artifact.
  • Running automated tests.
  • Capturing the log files so any failed builds or tests can be resolved.

A Continuous Integration server facilitates this process by running builds and tests with each commit.

Continuous Integration servers can be described as solving the equation:

code + dependencies + build tools + execution environment = test results + logs + compiled artifact

Continuous Integration


The left side of the equation takes the code written by developers, any dependencies of the code, a build tool, and the environment where the build and tests are executed. When these inputs are available, a Continuous Integration server completes the build to produce the elements on the right side of the equation.

When a Continuous Integration server has been configured correctly, each commit to a repository results in the build being run, thus solving the equation without manual intervention from a human.

This means the process implemented by Continuous Integration servers is machine-driven, so much so that it's common for Continuous Integration servers to have read-only user interfaces, like the Jenkins Blue Ocean UI.

The other important aspect of the Continuous Integration equation is that developers provide the inputs, and the outputs are created for developers or people in other technical roles. Employees outside the IT department rarely interact with the Continuous Integration server.

What Are Continuous Deployment and Continuous Delivery?

Continuous Deployment takes the compiled artifacts from a successful build performed by the Continuous Integration server and deploys them into the production environment, resulting in a completely automated deployment workflow. In this scenario, Continuous Deployment is quite rightly an extension of Continuous Integration, and the distinction between the two becomes somewhat arbitrary.

Such commit-to-consumer workflows are common in simple projects. More complex projects can also have a completely automated deployment workflow if the appropriate tests and monitoring systems are in place.

But while fully automated deployments have many benefits, it's not uncommon for deployments to involve human decision-making. There are many valid reasons for not automatically deploying every commit to the main branch into production, including:

  • Coordinating deployments with legacy systems.
  • Acquiring sign-off from product owners.
  • Usability testing that is impossible to automate.
  • Regulatory requirements
  • Dogfooding your own product.
  • Integrating deployments with back-end changes like databases.
  • Not having 100% confidence in your tests.

The term Continuous Delivery is used to distinguish workflows that incorporate human decision-making from Continuous Deployment workflows that are fully automated.

Where Continuous Integration tooling is machine-driven for many teams, Continuous Delivery is human-driven. Much of the grunt work of performing a deployment is still automated, but the decision to promote a release through to production is a human one. Importantly, the decision may not be made by technical employees but rather by product owners, managers, or someone who stayed up until midnight to click the deploy button.

Why Use Separate Continuous Integration and Continuous Delivery Tools?

A typical CI/CD pipeline, with no distinction between the two.

A typical CI/CD pipeline, with no distinction between the two.

This slide is from a talk titled How to build cloud-native CI/CD pipelines with Tekton on Kubernetes. It's a classic example of how simple projects merge Continuous Integration and Continuous Deployment into a single process where a production deployment starts as soon as the code has been compiled.

There's nothing wrong with this process, and it works as intended if every part of the pipeline remains fully automated. But what happens if a human needs to test and approve the application before it's released?

For this decision to be made, the deployment process must be interrupted. For example, we'd first deploy the application to a test environment, allow the appropriate parties to verify the changes, and when everyone is happy, the release is promoted to production.

This single decision point means our once machine-driven equation now:

  • Requires a UI to expose the releases that have been made to the testing environments.
  • Introduces auditing and security concerns so we can limit and then review who promoted which releases to which environments.
  • Requires a UI to allow deployments to be promoted to the next environment.
  • Requires a system that can model environments in a first-class manner so they can be reliably secured and managed through the UI, API, and reporting interfaces.

This focus on the human element is frequently lost when CI/CD is presented as nothing more than a deployment step, automatically performed after the code has been compiled. For instance, the Jenkins documentation recommends that the test and production environments be modeled as stages in a Continuous Integration pipeline.

At first glance, this example appears to provide a point in the process for a human to approve the deployment, but what happens to a build that was never intended to be pushed to production? Such a build would be canceled before the application is exposed to customers, resulting in a failed build. These failed builds are difficult to distinguish from builds that failed to compile or failed their tests, even though not promoting to production is the expected behavior of the Continuous Delivery process in this instance.

In short, a good deployment tool facilitates the human decision-making process that is so common (if not essential) to deployments, or at the very least surfaces the current state of the deployments between environments and automates the deployment, so promotions between environments are easy and reliable.

Conclusion

Recognizing the different requirements between a machine-driven Continuous Integration process and a human-driven Continuous Delivery process is essential for delivering features to your customers in a fast, reliable, and repeatable manner. This is why using dedicated tools for Continuous Integration and Continuous Delivery can make sense. 

Happy deployments!

Contextual design UI Build (game engine) Delivery (commerce) Testing Integration

Published at DZone with permission of Matthew Casperson, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Evolving From Performance Testing to Modern Engineering
  • Testing Swing Application
  • CI/CD Metrics You Should Be Monitoring
  • Continuous Integration and Continuous Deployment (CI/CD) for AI-Enabled IoT Systems

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: