Skip to content

Commit

Permalink
Add daily email for 2024-07-02
Browse files Browse the repository at this point in the history
CI !== Pipeline
  • Loading branch information
opdavies committed Jul 2, 2024
1 parent 7591591 commit f86bd70
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions source/_daily_emails/2024-07-02.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
title: CI !== CI Pipeline
date: 2024-07-02
permalink: daily/2024/07/02/ci-not-ci-pipeline
tags:
- software-development
- git
cta: ~
snippet: |
Continuous integration is not the same as a CI pipeline.
---

Yesterday I replied to [a post on X](https://x.com/ianmiell/status/1304103008242991111):

> I have worked on many teams that use CI tooling and call their process CI, but I have never seen CI actually done as defined on Wikipedia:
>
> "CI is the practice of merging all developers' working copies to a shared mainline several times a day"
[I've written about this before][0] and I think the term CI or CI/CD is one of the most misused or misleading in software development.

CI, or continuous integration, is, as the post days, the process of everyone merging their changes at least once, or usually several, times a day.

It isn't something that is configured or created - it's a process.

## Here's the thing

You can do CI without a CI pipeline and vice versa.

You can have a CI pipeline but not do continuous delivery or deployment.

What most people think of as CI or CI/CD is a set of automated checks that run when code is updated - usually on a feature or topic branch.

Whilst important, it's not "CI".

[0]: {{site.url}}/blog/continuous-integration-vs-continuous-integration

0 comments on commit f86bd70

Please sign in to comment.