Re: Warnings plugin extension: how to make it show up and to define input log file

2017-06-07 Thread Slide
They are defined by creating a properties file with the messages. See https://github.com/jenkinsci/warnings-plugin/blob/c5db29ed729c201e37e553521f4daf099ff36a52/src/main/resources/hudson/plugins/warnings/parser/Messages.properties#L87 for examples. On Wed, Jun 7, 2017 at 5:22 PM Simon M

Re: Does Jenkis need the workspace in order to compare previous commits for Git repository

2017-06-07 Thread Mark Waite
On Wed, Jun 7, 2017 at 5:46 PM Stephen Connolly < stephen.alan.conno...@gmail.com> wrote: > On Wed 7 Jun 2017 at 22:48, Łukasz Zachulski wrote: > >> I've found Jenkins article Triggering a build using hooks in Bitbucket >> server >>

Re: Warnings plugin extension: how to make it show up and to define input log file

2017-06-07 Thread Simon M
Anyone? As far as I can see the method Messages._Warnings_runbluepearl_ParserName() isn't defined, but looking at other extensions, (for example GccParser), this and similar methods don't appear to be explicitly defined. So, how to define them implicitly? Simon On Wednesday, June 7, 2017

Re: Does Jenkis need the workspace in order to compare previous commits for Git repository

2017-06-07 Thread Stephen Connolly
On Wed 7 Jun 2017 at 22:48, Łukasz Zachulski wrote: > I've found Jenkins article Triggering a build using hooks in Bitbucket > server > > and it states that > >

Re: how to reset build number

2017-06-07 Thread Daniel Becroft
Would the Next Build Number plugin provide any benefit? https://wiki.jenkins-ci.org/display/JENKINS/Next+Build+Number+Plugin It looks like it allows you to control the build number, but it might need two builds to take effect. On Thu, Jun 8, 2017 at 7:58 AM Derrik Ammons

Passing extensible choice parameter from Controller to Downstream job (groovy system script) fails

2017-06-07 Thread Victoria Kozel
Hello, I've written a System Groovy script that generates a dropdown list based on the current user's role. Everything works fine except when I am trying to call a downstream job from a Controller job, I get ERROR: Build step failed with exception java.lang.IllegalArgumentException: Illegal

Re: Job Scheduling per 10 secs

2017-06-07 Thread Ramanathan Muthaiah
Hi , Freestyle or pipeline job configuration has few items that should satisfy what you're looking for. 1) Build Periodically 2) Do not allow concurrent builds. Have you looked at them and tried to customize for your wants? /Ram On Wednesday, June 7, 2017 at 9:37:35 PM UTC+5:30, Ashish

Re: how to reset build number

2017-06-07 Thread Derrik Ammons
pchitale, did you get an answer? I am wondering the same thing. I need to reset the build number back to 1 if the release version has been incremented. I have a multibranch pipeline jenkinsfile that kicks off a build upon commits. When product marketing wants to publish a new release, the

Does Jenkis need the workspace in order to compare previous commits for Git repository

2017-06-07 Thread Łukasz Zachulski
I've found Jenkins article Triggering a build using hooks in Bitbucket server and it states that You need to ensure that your workspace is not deleted after every build. > The Git

Re: Warnings plugin extension: how to make it show up and to define input log file

2017-06-07 Thread Simon Matthews
I really appreciate the help you have given me. However, my plugin extension is still not working. I updated my git repository: https://github.com/SimonMatthews-BP/BPWarnings The Jenkins log shows the following error: Jun 07, 2017 6:54:02 PM

Re: [Jenkins-infra] Confluence maintenance window tomorrow (2017-06-07) from 15:30 - 17:30 UTC

2017-06-07 Thread R. Tyler Croy
The wiki is back online, but some users may have difficulty logging in with fresh sessions. Confluence is still syncing user data from LDAP and is likely going to be doing so for the next couple hours. - R. Tyler Croy -- Code:

Re: Confluence maintenance window tomorrow (2017-06-07) from 15:30 - 17:30 UTC

2017-06-07 Thread R. Tyler Croy
(replies inline) On Tue, 06 Jun 2017, R. Tyler Croy wrote: > > We're planning to perform a Confluence upgrade tomorrow in a maintenance > window > between 15:30 and 17:30 UTC (8:30 - 10:30 PDT). > > The ticket tracking this work is: > https://issues.jenkins-ci.org/browse/INFRA-1201 Just

Re: sh returnStdout:true leaking deleted file handles

2017-06-07 Thread 'Kieran Shaw' via Jenkins Users
Hi Michael, Thanks for your reply. I can reliably run that simple little pipeline that uses returnStdout and get a leak. I'm using the latest versions of everything. I find it hard to believe it is a bug in the 'sh' command as it is going to be so widely used, it can't just have been me that

Job Scheduling per 10 secs

2017-06-07 Thread Ashish Kaushik
Hi, I am looking for a solution which allow me schedule a job which can run every 10 secs and also the job should not run if the previous instance has not yet finished. I have checked the plugin store but can't find anything that supports this requirements. Any pointers would be greatly

Same git repo with multiple jenkins job creating build problems

2017-06-07 Thread Gopi Polisetti
Hi, Am using Git repository, Git Repository A it has multiple solutions b, c , d , e ... , Each solution has one jenkins job, Jenkin Job B Jenkin Job C Jenkin Job D -- If I change any code (B,C,D) under Repository A - All jenkin - B,C,D job triggers build. If I change any code related

Multibranch pipeline job doesn't fully support Subversion?

2017-06-07 Thread David Aldrich
Hi There is a known issue with the Subversion plugin that 'Additional Credentials' must be specified if Externals are used. Most job types allow the user to specify the 'Additional Credentials' in the GUI, but the Multibranch pipeline job does not. To me, this is a show-stopper for using

Checkout from multiple SCMs/repos in declarative pipeline?

2017-06-07 Thread Kirill Peskov
Hi All, Due to some project restrictions I have to combine sources from 3 repositories (1 Subversion and 2 Git repos), is there an easy way to achieve that in a declarative pipeline? Neither project subdirs nor files in the root of each repo are not overlapping with each other, so merging them in

Re: Warnings plugin extension: how to make it show up and to define input log file

2017-06-07 Thread Simon M
On Wednesday, June 7, 2017 at 6:13:15 AM UTC-7, slide wrote: > > It should show up after installing your plugin and restarting Jenkins. I > checked the source and it looked like you added the @Extension to your > parser, so it should get pulled in once the plugin is installed. What do > you

Re: Warnings plugin extension: how to make it show up and to define input log file

2017-06-07 Thread Slide
By the way, you shouldn't need this at all https://github.com/SimonMatthews-BP/BPWarnings/blob/master/src/main/java/hudson/plugins/bluepearl/RunBluePearlParser.java#L41 The ID is one of the parameters you are passing to super in your constructor. On Wed, Jun 7, 2017 at 6:12 AM Slide

Re: sh returnStdout:true leaking deleted file handles

2017-06-07 Thread Michael Kobit
We see massive file handle leaks on a different Jenkins we have that does not use Pipeline. The leaks were on the build logs. We haven't figured out if it is a plugin or something in Jenkins core and we just dealt with it by restarting Jenkins nighty. On another instance we use pipelines

Re: Warnings plugin extension: how to make it show up and to define input log file

2017-06-07 Thread Slide
It should show up after installing your plugin and restarting Jenkins. I checked the source and it looked like you added the @Extension to your parser, so it should get pulled in once the plugin is installed. What do you mean by #2? Are you asking how to use the warnings plugin in general? On

Blu Ocean Pipeline PNG

2017-06-07 Thread Joaquin Henriquez
Hi Is there a possibility go the the visual pipeline png somehow? I want to send it via email or via #slack when finished [cid:image001.jpg@01D2DF98.10673CF0] https://i.stack.imgur.com/pZ4r4.png BR Jo -- You received this message because you are subscribed to the Google Groups "Jenkins

[pipeline] approve input statement from another job with pipeline code

2017-06-07 Thread Bill Dennis
(re-posting with corrections) Has anyone managed to write pipeline code (or even their own plugin) to approve an input using pipeline code from another job (shared library NonCPS method or whatever)? I have this scenario - JobA input id: 'JOBA_CALLBACK', message: 'Waiting for JobB',

[pipeline] approve input from another job using pipeline code

2017-06-07 Thread Bill Dennis
Has anyone managed to write pipeline code (or even their own plugin) to approve an input using pipeline code from another job (shared library NonCPS method or whatever)? I have this scenario - *JobA* input id: 'JOBA_CALLBACK', message: 'Waiting for JobB', parameters: [string( defaultValue:

sh returnStdout:true leaking deleted file handles

2017-06-07 Thread 'Kieran Shaw' via Jenkins Users
Anyone got any thoughts or experience with this: https://issues.jenkins-ci.org/browse/JENKINS-43639?focusedCommentId=302114=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-302114 -- You received this message because you are subscribed to the Google Groups "Jenkins

Plugins metadata failing signature check?

2017-06-07 Thread David Aldrich
After checking for updated plugins this morning I see: "None of the tool installer metadata passed the signature check" Best regards David -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving

Re:

2017-06-07 Thread James Nord
So I guess you have been using https://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Remote+Trigger+Plugin, other than that I do not know of an oss pluggin. There is a proprietary comercial feature that does sound Ds like it does exactly what you want in CloudBees Jenkins Enterprise

Re: Remove / disable the Replay capability for Jenkins Pipeline consumers

2017-06-07 Thread Jim Coll
Worked it out - the Run/Reply permission was getting greyed out when the Job/Configure permission is selected which implies that it's automatically granted with the latter permission. On Tuesday, June 6, 2017 at 6:45:54 PM UTC+1, Jim Coll wrote: > > I want to remove the ability for users of

AWS Simple AD Issue

2017-06-07 Thread Brian Mills
I've been using Active Directory plugin for years in an AWS environment, using AWS Simple AD as a back end. Today for no apparent reason the AD auth plugin stopped being able to communicate to Simple AD. Some updates were done yesterday to Jenkins plugins, but I don't believe AD was one of