Re: Pipeline script for Build Trigger

2017-01-29 Thread Kevin Burnett
Sebastian, here's a snippet of a declarative Jenkinsfile pipeline showing a time-based (cron) trigger: pipeline { triggers { // every 30 minutes during 9 hours each night cron('H/30 20,21,22,23,0,1,2,3,4 * * *') } agent { label 'docker' } environment { GIT_COMMITTER_NAME = 'je

Run link is disabled under Pipeline when Jenkins job configured with Parameters

2017-01-29 Thread Kalyan Bhave
hi Team, I have configured Jenkins job with "This build is parameterized". While I Build individually I see no issues at all. But if I add this job in Pipeline and execute "Run" Link is Disabled and I could see below error. Do we have any alternate solution for this so that I can add Parameters

Re: Responsibility for reviewing plugin pull requests

2017-01-29 Thread Daniel Beck
> On 29.01.2017, at 13:28, James Sherwood-Jones > wrote: > > Who reviews pull requests for plugins? Generally their maintainers. Some of them do a better job of it than others, and some plugins are even unmaintained. More of a dev list question, so if you want to continue this thread, pleas

JaCoCo plugin which does not override the exclusion list specified by build.gradle

2017-01-29 Thread Ipsita Samal
Hi, This jacoco plugin : https://wiki.jenkins-ci.org/display/JENKINS/JaCoCo+Plugin overrides the exclusion list provided in build.gradle with its own set of exclusions which it accepts as a parameter as a part of jenkins config. Is there way I can provide that exclusion list as a part of build

Responsibility for reviewing plugin pull requests

2017-01-29 Thread James Sherwood-Jones
Hi, Who reviews pull requests for plugins? For example, I've modified nvm-wrapper-plugin to allow it to be used with pipeline / workflow and would love that code to be reviewed for inclusion in the officially distributed plugin. Thanks, James -- You received this message because you are su