Unnecessary big build logs (JENKINS-21605)

2015-01-15 Thread Dirk Thomas
Hi, is there a good way to get the attention of the Jenkins developers to a specific ticket? I have tried IRC but haven't received any feedback. https://issues.jenkins-ci.org/browse/JENKINS-21605 is classified as "critical" in the "core" component and has been open for almost a year now. It des

Re: Groovy script to abort current build and skip other action of the job

2012-11-09 Thread Dirk Thomas
-ci.org/browse/JENKINS-15748 - Dirk On 08.11.2012 13:16, Dirk Thomas wrote: I am running 1.488 and can abort builds via UI. But invoking the following function in a groovy script: build.getExecutor().interrupt(Result.ABORTED) does not cancel the build but run in to the end (including all

Re: Groovy script to abort current build and skip other action of the job

2012-11-08 Thread Dirk Thomas
I am running 1.488 and can abort builds via UI. But invoking the following function in a groovy script: build.getExecutor().interrupt(Result.ABORTED) does not cancel the build but run in to the end (including all following build actions) and marks the build as FAILED. - Dirk On 08.11.2012 0

Re: Groovy script to abort current build and skip other action of the job

2012-11-08 Thread Dirk Thomas
As mentioned in my original post both of the following will mark the build as failed (not aborted) and will also process all further build actions: build.getExecutor().interrupt() build.getExecutor().interrupt(Result.ABORTED) Especially that the second line marks the build as failed I would