Re: Getting the build description from a URL

2017-09-05 Thread graya2
LOL. I ran across my own post from 5 years ago. I can answer it myself now: from jenkinsapi.jenkins import Jenkins import jenkinsapi J = Jenkins('http://myjenkins:8080/', username='user', password='password') job = J['my-job'] b = job.get_build(383) b.get_description() -- Sent from: http://jen

Filter SCM polling on Multiple SCM with Git

2013-04-22 Thread graya2
I am using "Multiple SCM" plugin and I have 2 git repos that are being pulled into my workspace: g...@bitbucket.org:foo/a --> goes to directory $WORKSPACE/a g...@bitbucket.org:foo/b --> goes to directory $WORKSPACE/b I want to filter *all* commits to foo/a so that the job does not start. Easy eno