Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 1.12 KB

CICDRouteToLive.md

File metadata and controls

25 lines (18 loc) · 1.12 KB

Continuous Integration and Delivery

Goals

The route to live should be

  1. Fast
  2. Protect current functionality
  3. Automated

Overview

The above goals will be realized by the CI/CD pipeline, which includes different test suites to protect current functionality.

CICD

The above figure depicts the CI/CD pipeline flow

  1. Developer will check-in the code(including unit test) into version control system.
  2. The CI/CD automation tool (Jenkins) will listen to the check-ins, and on each trigger it will run clean, build, unit tests.
  3. To keep the code quality to an acceptable standard. The static code analysis tool will be used.
  4. After the code analysis is successful, the deployment artifacts will be stored in artifact repository.
  5. The first deployment will be done on Development environment.
  6. If deployment is successful, component and smoke tests will be performed.
  7. Depending on the requirement to deploy on higher environments, authorized user can further push the artifacts, which will have additional test suites to be tested based on the environment. This cycle can go up to Production.