screenshot of old style computer terminal with caption that asks what is ci/cd

What is CI/CD? (Introduction to CI/CD with a software dev perspective)

What is CI/CD?

You may have heard this weird little acronym floating around the web.

But what the heck is it?

And should you use it as a software developer?

You’ll find out in today’s post.

This post contains affiliate links. I may receive compensation if you buy something. Read my disclosure for more details.

🚀 This post is brought to you by Educative.io.

🔥  💻 📚  Check out their course Cloud Computing 101: Master the Fundamentals. You’ll learn about cloud deployment models, clustering, continuous deployment and delivery and more.

What is CI/CD?

CI/CD is an acronym for continuous integration/continuous deployment.

But it can also mean continuous integration/continuous delivery (more on the differences below).

Basically, CI/CD automates your builds.

It automates your tests.

And it automates your deployments.

And like all good pieces of software, a good CI/CD workflow is going to save you time.

This gives the boss a happy face!

It also prevents you, the developer, from flipping your desk over in an epic rage quit. Woot!

What are the benefits of CI/CD?

A few of the benefits of CI/CD include:

  1. Reduced production & staging errors
  2. Makes bugs easier to find & remove
  3. Easy rollbacks since changes are small & incremental
  4. Increase in team productivity
  5. Rapid feedback including automated code analysis & code health report
  6. Competitive advantage: you can get feedback from customers faster
  7. No more manual FTP deployment

What is Continuous Integration?

Continuous integration isn’t necessarily a particular tool.

Think of it more as a workflow or setup. And the CI tool(s) you choose lets you execute that workflow.

For example, there’s a CI tool called Jenkins.

jenkins ci logo butler with towel and suit and tie

Here’s what a CI process might look like if you were using Jenkins:

  1. Firstly, developers push code to a repo frequently. This could include patches, updates, and new functionalities.
  2. Once pushed, a Jenkins build server tests that code.
  3. Jenkins shows developers if their code has passed or failed.
  4. If code fails: Fix code and repeat steps 1-3.
  5. If code passes: Send to deployment environment.

In this flow, broken builds become a priority before building the next feature.

What is Continuous Deployment?

Continuous deployment is the second part of the “CI/CD” equation.

And it ensures your software can be released on demand. Deployments are fast and frequent.

Remember the process from the CI section above?

Once the code passes the tests, it’s pushed to its final phase: the deployment environment.

This whole process has a name. It’s called a deployment pipeline. Further, all code changes you make go through this pipeline.

What’s a deployment pipeline?

A deployment pipeline (or CI/CD pipeline) a series of validations your code flows through before it’s released to production.

For example, a simple pipeline could consist of these phases:

And here’s a theoretical pipeline for a Go project:

These example pipelines may look relatively straightforward. However, they can get complex quickly:

Image via https://cdn-images-1.medium.com/max/2000/1*N8pCkc2f7fzxsBZOEpgkDQ.png

Remember that pipelines vary from company to company, project to project.

What is the difference between continuous deployment and continuous delivery?

Continuous deployment simply means all changes go through a pipeline. They’re automatically deployed into production.

On the other hand, continuous delivery means means developers must manually approve the deployment.

Then once approved, the pipeline continues its automation.

To illustrate another way:

What are some popular CI/CD tools?

Some popular CI/CD tools include:

Do CI/CD tools cost money?

It depends.

While some CI/CD tools are totally free, some are freemium and some are paid tier only.

Additionally, many are available as part of the GitHub student developer pack. This includes Travis CI.

So if you’re a student, read this GitHub post to check your eligibility.

Also, GitHub announced in 2019 that GitHub actions now supports CI/CD. This is a free feature available to public repos.

Should I use CI/CD as a software developer?

For code newbies:

Not recommended.

Is CI/CD is an incredibly powerful mechanism for your workflow? Yes.

But learning the basics of programming and workflow management 101 (i.e. Git workflow) is more important as an aspiring developer.

For advaced beginners:

Give it a try!

Because if you plan on working in the industry as a software developer, there’s a good chance you’ll be using some sort of automation.

Thus, getting familiar with continuous delivery & continuous deployment/delivery, even as a solo dev, is good practice.

For those in the industry:

Absolutely. If you have a DevOps team, there’s a good chance they’ve implemented (or plan on implementing) a CI/CD workflow.

But if you don’t have a DevOps team, you can still get up and running with CI/CD.

Conclusion: What is CI/CD?

In summary, CI/CD is a way to automate your builds, tests and deployments.

There are lots of open source tools available.

But there are also paid options if you need the upgrade.

At the end of the day, continuous integration and continuous deployment/delivery can save time and money. Finally, if you’re on a dev team, it’s something you should seriously consider using.


But wait! There’s more: Refactoring By Martin Fowler: Improving the Design of Existing Code (2nd Edition) Book Review

  1. What is the difference between continuous deployment and continuous delivery?

    Continuous deployment simply means all changes go through a pipeline. They’re automatically deployed into production.
    On the other hand, continuous delivery means means developers must manually approve the deployment.

  2. Should I use CI/CD as a software developer?

    For code newbies:
    Not recommended.
    For advaced beginners:
    Give it a try!
    For those in the industry:
    Absolutely. If you have a DevOps team, there’s a good chance they’ve implemented (or plan on implementing) a CI/CD workflow.

  3. What are some popular CI/CD tools?

    Some popular CI/CD tools include:
    Travis CI
    Jenkins
    CircleCI
    GitLab
    Spinnaker
    BuildKite