What is CI/CD?
CI or Continuous Integration is the practice of automating the integration of code changes from multiple developers into a single codebase. It is a software development practice where the developers commit their work frequently to the central code repository (Github or Stash). Then there are automated tools that build the newly committed code and do a code review, etc as required upon integration. The key goals of Continuous Integration are to find and address bugs quicker, make the process of integrating code across a team of developers easier, improve software quality, and reduce the time it takes to release new feature updates.
CD or Continuous Delivery is carried out after Continuous Integration to make sure that we can release new changes to our customers quickly in an error-free way. This includes running integration and regression tests in the staging area (similar to the production environment) so that the final release is not broken in production. It ensures to automate the release process so that we have a release-ready product at all times and we can deploy our application at any point in time.
What Is a Build Job?
A Jenkins build job contains the configuration for automating a specific task or step in the application building process. These tasks include gathering dependencies, compiling, archiving, or transforming code, and testing and deploying code in different environments.
Jenkins supports several types of build jobs, such as freestyle projects, pipelines, multi-configuration projects, folders, multibranch pipelines, and organization folders.
What is Freestyle Projects ?? ๐ค
A freestyle project in Jenkins is a type of project that allows you to build, test, and deploy software using a variety of different options and configurations. Here are a few tasks that you could complete when working with a freestyle project in Jenkins:
Task-01
Pre-requisite
Jenkins is installed
Jenkins is up and running.
Docker plugins are installed in Jenkins
Create a new Jenkins freestyle project for your app.
Log in to your Jenkins instance.
Click on "New Item" to create a new project.
Enter a name for your project (e.g...)
Select "Freestyle project" and click "OK".
On the project configuration page, you can specify the details of the project, such as the source code management system, build triggers, and build actions. In the GitHub project write your GitHub project repository URL.
Add a second step to run the "docker run" command to start a container using the image created in Step 3
Save the changes
Manually build the project by clicking on the "Build Now" link on the project's main page. This will start the building project.
Once the build is completed, you can view the output commands that are executed in the "Console Output".
Task-02
Create a Jenkins project to run the "docker-compose up -d" command to start the multiple containers defined in the compose file (Hint- use day-19 Application & Database docker-compose file).
add a build step "docker-compose down" command to stop and remove the containers defined in the compose file.
Then add the "docker-compose up -d" command.
Build the project
Once the build is completed, you can view the output in "Console Output"
- Can browse the ip:8001
Thank you for reading this blog! Hope you find this article helpful.
Happy Learning!