Trigger jenkins this job if other job is triggerred AKA Build after other projects are built

How to Archive a Package and file with Jenkins?

How to Integrate Sonarqube with Jenkins as part of CI/CD?

How to Integration Jira with Jenkins as part of CI/CD?

Configure Jenkins First job of Java Code base with Maven Build tool

Jenkins Pipeline Complete Reference Tutorials

What is a Jenkins Pipeline? Jenkins Pipeline (or simply “Pipeline”) is a suite of plugins which supports implementing and integrating continuous delivery pipelines into Jenkins. Jenkins Pipeline…

Jenkins Introduction Simply Explained?

Jenkins is an open source continuous integration/continuous delivery and deployment tools. Jenkins in the Java programming language. It is used to implement CI/CD workflows, called pipelines. Jenkins…

jenkins-certification-exam

How to Register and prepare for the Jenkins Certification? – 2020

What is Jenkins? Jenkins is one of the most popular DevOps tool for Continuous Integration and Continuous Deployment (CI/CD).  It plays an important role in automating the…

What is Jenkins X? and How Jenkins X works?

Jenkins is described as an “extensible automation server” also popularly known as continuous integration and delivery tool that can be configured, via plugins, to be a Continuous…

What is Jenkins and Why we need it?

What is jenkins? Web Based tool to automate manual steps for any repetitive SDLC daily tasks. Continuous integration tool Continuous delivery tool Jenkins can integrate with any…

Top 33 Free Jenkins Plugins and their Tutorials with step by step guide.

List of Top 25 Jenkins Plugins

Jenkins Continous Integration with Another DevOps Tools

Enabling Jenkins integration with Silk Central Test Manager

Jenkins Jobs Configuration Demo with Example

Build Scala Project using sbt and Jenkins Environment variables and properties defined in jenkins | Jenkins Tutorial

Jenkins Pipeline Tutotrials with example of jenkinsfile

Jenkins Pipeline Example Code Sample

Jenkins Administrations and Configurations Complete Reference

Jenkins Upgrade and Solution!!! How to Change Jenkins HTTP port number? Jenkins Backup Jenkins Backup and Restore Process | Jenkins Tutorial

Scripting in Jenkins with Groovy and others Scripting Language

How to run/execute groovy script in Jenkins? Database of Groovy Script for Jenkins Automation Script to check the build status of a Jenkins job

Jenkins Commmands Line and REST API Complete Reference

Jenkins commands lines reference from jenkins Know About Jenkins CLI | Jenkins CLI Guide Understand Jenkins CLI | Jenkins CLI Reference Jenkins Remote access API Example |…

Jenkins How to do Guide, Tips, Tricks and Troubleshootings

How to attach the jenkins build log as part of the email body? How to attach the jenkins build log as part of the email body? How…

How to Schedule and Trigger a Jenkins job automatically?

Method 1 – AT CERTAIN TIME AKA Build periodically Method 2 – AT CERTAIN TIME BUT Build only when there is Code changes AKA Poll SCM Method…

Jenkins Errors and Solutions Database

Jenkins Error: Running two Java Versions – Jenkins Problem in Mac OS Jenkins Error: /usr/bin/p4 error in windows machine with jenkins Jenkins Error: Jenkins time-out while pushing…

Jenkins Error: Running two Java Versions – Jenkins Problem in Mac OS

Hi Everyone – Today we are going to discuss about how to have two version of Java Development Kit running in MAC OS and how to switch…

How to disable/Uninstalling Jenkins a plugin when Jenkins is down using command line?

Issue A plugin is preventing Jenkins to restart I need to disable a plugin and Jenkins is down How to Uninstall a jenkins plugin using command line?…

Jenkins Interview Questions and Answers – Part 6

What are the parts of the task lifecycle Execution Initialization, Configuration, Execution (Ans) Initialization, Configuration, Execution, Finalization Configuration, Execution How do you declare a typed task? task…

Jenkins Interview Questions and Answers – Part 5

The easiest way to get a plugin for Jenkins is ______________ . from inside Jenkins itself (Ans) by building it from source creating a plugin request call…

Jenkins Interview Questions and Answers – Part 4

An important step in making sure that the build process is taken seriously is to ________ . never leave the build in a broken state (Ans) send…

Jenkins Interview Questions and Answers – Part 3

What is Jenkins ? Why we use Jenkins ? What are the other tools/technologies present in market other than jenkins for CI/CD ? How to move Jenkins…

Jenkins Interview Questions and Answer – Part 2

beginner Explain what is Jenkins and what is it used for Explain each of the following in the context of nodes: Master Slave Executor Agent Label Explain…

Copy a files from jenkins server to jenkins node/slave using pipeline plugins

Workarond 1 – Try to use stash/unstash, but it is bad for large files. [code]node(‘master’) {dir(‘/path/on/master/1’) {stash ‘master-stuff’}}node(‘slave’) {dir(‘/path/on/slave/1’) {unstash ‘master-stuff’}dir(‘/path/on/slave/2’) {stash ‘slave-stuff’}}node(‘master’) {dir(‘/path/on/master/2’) {unstash ‘slave-stuff’}} [/code]…

How to execute grovvy script remotely on Jenkins server?

A Jenkins Admin can execute groovy scripts remotely by sending an HTTP POST request to /script/ url or /scriptText/. curl example via bash [code] curl -d “script=<your_script_here>”…

How to run/execute groovy script in Jenkins?

Here are the List of way using you can apply grovy code in Jenkins Method -1: Groovy plugin This plugin adds the ability to directly execute Groovy…