Triggering Parameterized Build Using Jenkinsapi In Python
I am using the following code to create a job in jenkinsapi from jenkinsapi.jenkins import * from jenkinsapi.job import * import os.path import urllib2 jenkin = Jenkins('http://hu
Solution 1:
No, this is definitly incorrect. Paramters dict would be converted to GET parameters. And file objects couldn't be converted to strings. You can pass path to files as parameters and write or read them inside your CI job.
Post a Comment for "Triggering Parameterized Build Using Jenkinsapi In Python"