What Does "Continous Integration" Mean?

What Does "Continous Integration" Mean?

·

3 min read

Have you ever heard of "Continuous Integration" but wondering what it means?

This article is for you.

Continuous Integration is one of the top technical terms that (in my humble opinion) a software engineer should know.

Related: Top 10 Technical Terms Every Software Engineer Should Know

I'll explain in simple terms what Continuous Integration means. Hopefully, by the end of the article, you'll clearly understand why we need Continuous integration in software engineering.

Let's start.

What Is Continuous Integration?

Let's take the following scenario:

We have three software engineers in a medium-sized company, all working and contributing towards one big project, each implementing different features. They initially work on a local branch and commit their changes at least daily.

3 Software Engineers.jpg

What happens when they push their code?

Here is where Continuous Integration comes into play.

Continuous integration is a DevOps software development practice where developers regularly merge their code changes into a central repository, after which automated builds and tests are run. Amazon Web Services

Continuous Integration.jpg

Before you push your changes to the remote repository, run your tests locally. If any tests fail, address the failing tests before pushing your changes remotely.

Once all tests pass on your local machine, you're ready to push your changes remotely.

When you push your changes remotely:

  1. A CI Server detects any changes made by the engineers.

  2. If there are any changes, the CI Server looks for the most recent source code version and starts executing the build script.

  3. Once the build is generated, the CI Server validates all the test cases and assesses the quality of the code.

  4. Then, the CI Server gives you feedback via email.

  5. If the build fails, the CI Server informs the team. Team members read the message to understand where the issue is, fix the problem and integrate the changes back to the remote repository.

  6. Then we start again from step 1 until the build shows that the changes integrate successfully and tests all pass.

Continuous integration helps engineers reduce risks by giving them feedback about their code. The purpose of Continuous Integration is to help identify and fix any errors faster.

Continuous integration promotes collaboration among team members, more efficient problem-solving, and improved project delivery.

Continuous integration requires the team to:

  1. Fix all problems and avoid checking in broken code.

  2. Ensure that enough tests cover happy and unhappy paths and that they all pass.

  3. Avoid checking in code when the build fails.

  4. Be more responsible and accountable for their code.

What Happens When the Build Is Successful?

If the build is successful, the code can be released to production (meaning that the changes will be released to the end users). The practice of moving code to production is known as Continuous Delivery.

What Are the Benefits of Continuous Integration?

  1. It's easier to detect and address bugs.

  2. Reduce merge conflicts.

  3. You can release software more frequently.

  4. Better code quality.

  5. Rapid feedback, thanks to the CI Server.

aws-benefits-of-continuous-integration.jpg

Amazon Web Services - What Is Continuous Integration

Why Do We Need Continuous Integration?

We need Continuous integration because it allows software teams to catch bugs more rapidly. Since the CI Server checks the code's quality, the software released to production will be higher quality. Continuous integration makes it easier to release more features to the end users.

Conclusion

In this article, you've learned about Continuous Integration, what it means and why it's important to know as a software engineer.

I hope you've found this article helpful.

Do you practice Continuous Integration in your workplace? Do you use any Continuous Integration tools? Let me know in the comments.

Until next time!

ADDITIONAL RESOURCES:

Did you find this article valuable?

Support Maddy by becoming a sponsor. Any amount is appreciated!