CI/CD Pipeline from Scratch

How to build CI/CD Pipeline

In today’s fast-paced software development environment, the Continuous Integration and Continuous Deployment (CI/CD) pipeline has become an essential practice for delivering quality software efficiently. Whether you’re a beginner or an experienced developer, setting up a CI/CD pipeline can drastically improve your workflow by automating testing, building, and deployment processes.

In this comprehensive guide, we’ll walk through the basics of CI/CD, its benefits, and a step-by-step process to create a pipeline using tools like Jenkins, Bitbucket Pipelines, or GitLab CI/CD.


What is CI/CD?

CI/CD stands for:

  • Continuous Integration (CI): A practice where developers integrate code into a shared repository frequently. Automated builds and tests validate the changes to ensure they don’t break the application.
  • Continuous Deployment (CD): Automating the release of code changes to production or staging environments. In some cases, this is split into Continuous Delivery, where releases require manual approval.

By combining CI and CD, teams can achieve faster development cycles, reduce errors, and improve collaboration.

Benefits of CI/CD

  1. Automation: Automates repetitive tasks like testing, building, and deploying.
  2. Faster Feedback: Detects issues early in the development cycle.
  3. Improved Collaboration: Encourages frequent code integration, reducing merge conflicts.
  4. Consistent Deployments: Ensures environments are configured identically across builds.
  5. Higher Quality: Continuous testing and integration lead to more reliable software.

Prerequisites for Setting Up CI/CD

Before you start, ensure you have:

  1. Version Control System: A repository for your code, such as Bitbucket, GitHub, or GitLab.
  2. Build and Test Scripts: Scripts to build and test your application (e.g., npm test for Node.js or mvn test for Java).
  3. Hosting Environment: A server or platform for deployment (e.g., AWS, Azure, Kubernetes).
  4. CI/CD Tool: A tool like Jenkins, Bitbucket Pipelines, GitLab CI/CD, or CircleCI.

Step-by-Step Guide to Building a CI/CD Pipeline

Step 1: Plan Your Workflow

Define the steps required to take your code from development to production. For example:

  1. Code changes are pushed to a Bitbucket repository.
  2. Automated tests run to validate changes.
  3. A build artifact (e.g., Docker image) is created.
  4. The artifact is deployed to staging or production.

Step 2: Choose a CI/CD Tool

Here’s a quick comparison of popular tools:

ToolBest ForFeatures
JenkinsCustomizable pipelinesOpen-source, plugin-rich, flexible
Bitbucket PipelinesBitbucket repositoriesIntegrated CI/CD, YAML-based configuration
GitLab CI/CDEnd-to-end DevOpsIntegrated with GitLab, auto DevOps
CircleCIContainerized buildsEasy setup, Docker integration

For this guide, we’ll use Bitbucket Pipelines.

Step 3: Set Up Continuous Integration

1. Write a Configuration File

In your repository, create a bitbucket-pipelines.yml file:

pipelines:
  default:
    - step:
        name: Build and Test
        image: node:16
        caches:
          - node
        script:
          - npm install
          - npm test

2. Test Your Pipeline

Push changes to your Bitbucket repository. Bitbucket Pipelines will automatically trigger the pipeline, running the steps defined in your configuration.

Step 4: Add Continuous Deployment

1. Extend Your Workflow

Modify your bitbucket-pipelines.yml file to include deployment steps:

  branches:
    main:
      - step:
          name: Build and Test
          image: node:16
          caches:
            - node
          script:
            - npm install
            - npm test
      - step:
          name: Deploy to Production
          deployment: production
          script:
            - echo "Deploying to production..."
            # Add your deployment script or command here

2. Secure Your Pipeline

Use Bitbucket repository variables to store sensitive information, such as API keys or SSH credentials. Access them in your pipeline as follows:

            - scp -i $DEPLOY_KEY ./build.zip user@server:/var/www/app
            - ssh -i $DEPLOY_KEY user@server "./deploy-script.sh"

Step 5: Monitor and Optimize

  1. Set Notifications: Use email or Slack integrations to receive pipeline updates.
  2. Monitor Performance: Identify bottlenecks by reviewing pipeline logs.
  3. Add Staging Environments: Test changes in staging before deploying to production.
  4. Include Rollbacks: Ensure you can roll back deployments in case of failures.

Example Use Case: Deploying a Node.js App to AWS

Let’s say you’re deploying a Node.js application to AWS EC2 instances. Your CI/CD pipeline might look like this:

  1. Build Stage: Install dependencies, run tests, and create a production build.
  2. Deploy Stage: SCP the build files to the EC2 server and restart the application using PM2 or Docker.

Sample deployment step:

      - step:
          name: Deploy to EC2
          script:
            - scp -i $DEPLOY_KEY ./build.zip ec2-user@your-ec2-instance:/var/www/app
            - ssh -i $DEPLOY_KEY ec2-user@your-ec2-instance "unzip -o /var/www/app/build.zip -d /var/www/app && pm2 restart app"

Conclusion

Building a CI/CD pipeline is a game-changer for software development. It ensures faster delivery, fewer bugs, and a more streamlined workflow. While this guide used Bitbucket Pipelines as an example, the principles apply to other tools as well. Start small, experiment, and refine your pipeline to suit your team’s needs.