Re: Attempt to (de-)serialize anonymous class hudson.maven.reporters.MavenArtifactArchiver and hudson.maven.reporters.MavenFingerprinter

2018-11-29 Thread Pranav Kv
Thank You So much Mr. Oliver. Could you please update the status in jira? The jira status showing "fixed but unreleased" https://issues.jenkins-ci.org/browse/JENKINS-53481 Thanks, Pranav On Fri, 30 Nov 2018, 9:43 am Olivier Lamy release done and available via your favourite update center! >

Re: Attempt to (de-)serialize anonymous class hudson.maven.reporters.MavenArtifactArchiver and hudson.maven.reporters.MavenFingerprinter

2018-11-29 Thread Olivier Lamy
release done and available via your favourite update center! Enjoy your weekend using the so great Jenkins Maven Integration Plugin!! Cheers Olivier On Thu, 29 Nov 2018 at 20:15, Olivier Lamy wrote: > Hi > Merged. > Release tomorrow. > Cheers > Olivier > > On Thursday, 29 November 2018 00:01:51

Re: jenkins kubernetes yaml reference

2018-11-29 Thread Carlos Sanchez
You can find the YAML reference in kubernetes docs On Thu, Nov 29, 2018, 17:27 nirav wrote: > Is there a reference document where this is documented in detail for each > kind of kubernete entity - pod, service, deployment > > In past several months I saw 3 to 4 different style of defining this.

jenkins kubernetes yaml reference

2018-11-29 Thread nirav
Is there a reference document where this is documented in detail for each kind of kubernete entity - pod, service, deployment In past several months I saw 3 to 4 different style of defining this. It has been so confusing to define. seems like yaml is the latest new and "better" approach then

Re: A script that expects input, is there a way?

2018-11-29 Thread Adam von Nieda
Thanks for the reply, Jeff. That pretty well answers my question. I don’t have a problem making an interactive script non-interactive, I just wanted to make sure I wasn’t overlooking functionality within Jenkins that would do the same. -Adam -- Adam vonNieda a...@vonnieda.org

Re: A script that expects input, is there a way?

2018-11-29 Thread Jeff Pearce
It's not a Jenkins problem per-se, it's about how to use an interactive script in non-interactive mode. There are some ideas here: https://askubuntu.com/questions/439432/passing-arguments-to-an-interactive-script-which-will-run-in-background On 11/29/18, 2:00 PM,

A script that expects input, is there a way?

2018-11-29 Thread Adam von Nieda
Hi folks, I’ve got to run a bash script via Jenkins, and it expects several input values / carriage returns. Before I go down a rabbit hole, is there some standard way to handle something like this within Jenkins? I’d be running this as a pipeline stage. Thanks! -Adam --

Re: Best way to adjust Ansible options when running playbooks from Jenkins

2018-11-29 Thread asilver664
That was it, "parameterized builds". Thank you for pointing me in the right direction. On Thursday, November 29, 2018 at 12:35:23 PM UTC-5, Jeff Pearce wrote: > > I don’t know anything about ansible, so this may be off base, but maybe > add a job parameter to control it? > > > > *From: *> on

Re: Best way to adjust Ansible options when running playbooks from Jenkins

2018-11-29 Thread Jeff Pearce
I don’t know anything about ansible, so this may be off base, but maybe add a job parameter to control it? From: on behalf of "asilver...@gmail.com" Reply-To: "jenkinsci-users@googlegroups.com" Date: Thursday, November 29, 2018 at 8:38 AM To: Jenkins Users Subject: Best way to adjust

Best way to adjust Ansible options when running playbooks from Jenkins

2018-11-29 Thread asilver664
Hello, I'm new Jenkins and my goal is to try and use Jenkins as a GUI frontend to run Ansible playbooks on networking devices. The playbooks will do things such as backing up configs or performing upgrades and other various operations. I installed the Ansible plugin and I built a free style

Re: Jenkins - Add a dynamic label to a build

2018-11-29 Thread Veena Thomas
Hi Björn, Thank you for your input. I am now able to add badges. Any idea if it is possible to link similar badges. If I click on a badge can I get the list of all builds that contain the selected badge? On Thursday, November 29, 2018 at 11:10:52 AM UTC+5:30, Björn Pedersen wrote: > > Hi, > >

Re: Keep build output between stages and jobs

2018-11-29 Thread fabian
Looks like it might be a problem with out build system, not with Jenkins, sorry for that. Still investigating... Am Donnerstag, 29. November 2018 13:40:11 UTC+1 schrieb fabian: > > Hi > > However all the created files get deleted between steps. I don't call any > command > to clear the

Keep build output between stages and jobs

2018-11-29 Thread fabian
Hi I'm converting older jobs from Jenkins 1.x to the pipeline system. Seems to work so far. But I have a problem with temporary files. The job mainly consists of the stages: - update from svn - build - test1 - test2 ... I want to use the built files from stage 2 in the later stages. And

Re: CppCheck plugin fails on Ubuntu 18.04

2018-11-29 Thread fabian
Not really the best solution but I guess the best one until Jenkins and plugins are Java 1.11 ready. Thanks for the hint, I'll try that. bye Fabi -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop

Re: Jenkins - Add a dynamic label to a build

2018-11-29 Thread Veena Thomas
Suresh, I added the Groovy plugin and included a Groovy script as a part of the Build Post Steps. The groovy script goes through the console output and checks if a particular string is present. Example of the script: import jenkins.model.* JOB_NAME = "Maven Demo" CHECK_STRING =

Re: Attempt to (de-)serialize anonymous class hudson.maven.reporters.MavenArtifactArchiver and hudson.maven.reporters.MavenFingerprinter

2018-11-29 Thread Olivier Lamy
Hi Merged. Release tomorrow. Cheers Olivier On Thursday, 29 November 2018 00:01:51 UTC+10, Devin Nusbaum wrote: > > As I mentioned previously in the thread: > > As the linked page > explains, > anonymous classes can cause various

Extract test results data from [build(job: "child_job")] object

2018-11-29 Thread treneva
Hey, Here is my pipeline landscape: Master pipeline is triggering smaller child pipelines. Parent pipeline script snippet: stage('Integration Tests') { steps { script { def jobs = [:] pipelineIntegrationJobs.each { i ->