Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

Use the value in Groovy script which is running inside python #4099

Akshay ·

Hi All,

I am using the below groovy script inside python script to get jenkins data for a job. But I am not able to access the python variable "JOB" inside the groovy script. Kindly Help

def job_details():
    JOB = "Abc/Xyz"
        info = server.run_script(
            '''
    import jenkins.model.Jenkins
    def test_job = Jenkins.instance.getItemByFullName(**JOB**)
    last_build_number = test_job.getLastBuild().getNumber()
    println last_build_number
        ''')
  • replies 2
  • views 226
  • stars 0
robinshen ADMIN ·

How does this relate to QuickBuild?

Akshay ·

Its Not related to quick build, Its just a blocker for me , So i thought of getting help