Tue, 16 Apr, 2024

Components in CI

Components of CI in 01Cloud

1. Scripts:

The Scripts Section in 01Cloud CI comprises three core components: Dockerfile, Sub Directory, and Add Steps. Together, these components streamline and enhance CI pipeline, enabling efficient automation of tasks, tests, and deployments.

2.Dockerfile:

The Dockerfile is a critical component that defines how application should be containerized. It specifies the base image, installation of dependencies, configuration settings, and application deployment instructions. This file is automatically detected and utilized when it exists in the root directory of Git repository. It plays a central role in packaging applications into a Docker container, making it portable and easily deployable across various environments. It can be easily configurable.

3. Sub Directory:

It allows you to specify the location of projects within the Git repository. It is particularly useful when a project is structured in subdirectories or wants to build and deploy specific parts of a repository independently. By providing the relative path to the target code and ensuring that the correct source code is used for building images and running tasks.

4. Add Steps:

A powerful feature that empowers to define individual tasks or steps in CI pipeline. Each step consists of a user-defined step name and an associated command or script. This granularity enables them to orchestrate complex workflows with precision. It can use Add Steps to run tests, compile code, perform quality checks, deploy to different environments, and more. These steps can be customized to meet project’s specific requirements and executed sequentially.