Parameterize job in Jenkins
Hi All, In today's blog, we are going to see How to Parameterize our jobs in Jenkins for performing multiple kinds of actions from a single job. So simply starting with the need for this. There may arise a case where you are passing the Credentials and environment from outside the code by means of a CSV file saved in Amazon S3 or you have different TestNG configuration files with different data set and wish to choose one among those. In all these cases the Jenkins job needs to know and forward the same information to the executable. So this can be achieved by using the inbuilt feature of the Parameterization of Jenkins . So let's start with this. For this, you first simply need to create a New Item from the Jenkins Dashboard, which is actually a new project for you. As soon as you name the Item and click on Save , you will land on the Configuration page of the new Item. Click on the This project is parameterized checkbox. You may now see a dropdown with different options to ...