Jenkins

CI/CD Setup Ruby On Rails using Jenkins

Posted on

In this blog, we will  do the CI/CD Setup Ruby On Rails using Jenkins. Prerequisite Java — Install Java from here Jenkins — Install Jenkins from here Git — sudo yum install git Install Plugins in Jenkins Go to Manage Jenkins -> Manage Plugins -> RubyMetrics, Rake, Rvm Go To Manage Jenkins -> Configure System -> Search for Rake Find the RVM […]

Jenkins

Archiving in Jenkins

Posted on

This blog will discuss a way to signal a need to archive in Jenkins using groovy script. You can uses script console link to write groovy script that checks for the last successful run of any job; if the year is different to the current year, then a warning is set at the beginning of […]

AWS

Jenkins installation on AWS ec2 linux instance

Posted on

This blog will guide you through a detailed but yet easy steps for Jenkins installation on AWS ec2 linux instance. However in order to launch linux instance on AWS, follow this blog. Prerequisite: Java 8 is a prerequisite.You can Click here to install Java. Jenkins installation on AWS ec2 linux instance: Step 1. Firstly, add Jenkins […]

Jenkins

CI/CD using Jenkins Pipeline as code

Posted on

Jenkins Pipeline Pipeline annexes a strong set of automation tools onto Jenkins. It assists use cases covering from simple to comprehensive continuous integration/delivery pipelines. This blog will provide easy steps to implement CI/CD using Jenkins Pipeline as code. Furthermore it will integrate Jenkins, Github, SonarQube and JFrog Artifactory. Job –> Pipeline As Job is a […]

Jenkins

Jenkins integration with JFrog Artifactory

Posted on

  This integration allows your build jobs to deploy artifacts and resolve dependencies to and from Artifactory, and then have them linked to the build job that created them. STEP I. Download and configure JFrog Artifactory Following are the steps to download and create repositories and configure permissions to certain users in JFrog Arifactory: a. […]

Devops Tools

Jenkins integration with Maven

Posted on

Maven  is a build automation tool used primarily for Java projects, though can also be used to build and manage projects written in C#, Ruby, Scala, and other languages. Jenkins integration with Maven through plugins aids to automate the complete build. Maven is a program that automates the creation of executable applications from source code. It incorporates compiling, linking and packaging the code […]

Devops Tools

What is Continuous Integration?

Posted on

Definition :  Continuous Integration (CI) is a software development practice that requires developers to integrate their code into a shared repository at regular intervals (usually each person integrates at least daily – leading to multiple integrations per day). Further, e52ach integration/ check-in is verified by an automated build (including test) to detect integration errors  as […]

Jenkins

Jenkins integration with SonarQube

Posted on

In this blog, we will do the Jenkins integration with SonarQube. This will help you to check the quality of code using an automated CI/CD pipeline job. Prerequisite Jenkins Installation Sonarqube Installation “Quality cannot be inserted afterwards, rather it must be part of the process.” As a good practice in a development team, it is […]

Jenkins

Integrate Selenium with Jenkins

Posted on

How to Integrate Selenium with Jenkins This blog will help you to Integrate Selenium with Jenkins. This will help you to run the selenium scripts using Jenkins automatically or as per your need. Requirement Download the sample code from github Maven Installation Setup with eclipse Download the sample code from github Clone the repository from here cd […]