jenkinscontinuous-integrationcontinuous-deploymentcontinuous-delivery

How to trigger Jenkins builds remotely and to pass parameters


I am invoking a Jenkins job remotely using:

wget http://<ServerIP>:8080/job/Test-Jenkins/build?token=DOIT

Here Test-Jenkins job is invoked and DOIT is the security token that I have used.

Now I need to pass some parameters to the build.xml file of this job i.e. Test-Jenkins.

I have not yet figured out how to pass the variables yet.


Solution

  • See Jenkins documentation: Parameterized Build

    Below is the line you are interested in:

    http://server/job/myjob/buildWithParameters?token=TOKEN&PARAMETER=Value