Jenkins

Jenkins installation on windows machine

Posted on

This blog will give basic and simple information regarding Jenkins setup as a stand-alone application on Windows. To install and run Jenkins on Windows as a stand-alone application (Jenkins.war file comes with an embedded servlet containers, viz. Winstone, jetty ) rather than deploying it as a standard web application on to a Java Servlet container […]

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 […]

Jenkins

CI/CD with Jenkins & .NET

Posted on

This blog will help you setup the CI/CD with Jenkins & .NET. Tools Used: Platform: .NET 4.5.2 IDE: Visual Studio 2015 (MSBuild files) Application type: Windows Service NuGet: Package Manager used for all references. Source Control: Git (github.com) Install the MSBuild Plugin for Jenkins: Manage Jenkins -> Manage Plugins -> Msbuild -> Install it Configure MSBuild Manage Jenkins — Global Tool […]

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

CI/CD using Jenkins job

Posted on

Jenkins Jenkins is a self-contained (Java-based program), open source automation server. It is used by various organizations to perform DevOps practices, like Continuous Integration and Continuous delivery.  With the help of its extendable architecture through plugins, it can easily be integrated with myriads of tools and can easily implement CI/CD using Jenkins job both manually […]

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. […]

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 […]