Re: Exception when I try to trigger buildflow job from workflow job

2016-01-23 Thread EK
An example to reproduce : this is my workflow script , it takes param1 (string) from user when running, and executes buildflowjob : # println(param1); build job: 'buildflowjob', parameters: [[$class: 'StringParameterValue', name: 'param1', value:param1]] # this is my buildflowj

Re: "somecommand".execute()

2016-01-23 Thread Baptiste Mathus
What are you trying to do actually? I don't understand why you use a synchronized block. Also, wouldn't you be using proc.wait() instead of waitFor()? 2016-01-21 13:48 GMT+01:00 Niksan : > When running a process on a slave using execute system groovy, what's the > correct way to syncronise so a w

Re: crash plug-in warning - java heap space

2016-01-23 Thread Ullrich Hafner
Parsing is done on the master. > Am 22.01.2016 um 14:45 schrieb iostrym : > > Hi, > > We did a crash with jenkins, using plug-in warnings with a logfile that is 70 > Mo big : > > [WARNINGS] Parsing warnings in console log with parser FPGA_Questa_UVM > ERROR: Publisher hudson.plugins.warnings.W

Re: Version Number Plugin does not work when job is running more then once

2016-01-23 Thread Baptiste Mathus
Looking at the code [1], IMO this is a likely a bug. This is indeed gonna blow up each time the previous build will still be building, as build.getResult() will by contract return null if currently building. So, I think you should file an issue in the tracker about that. And if possible the associ

Re: Jenkins Upgrade Installation Constraints and Risks

2016-01-23 Thread Baptiste Mathus
Hi, Basically, yes, there are obviously many risks doing a fast-forward of almost 5 years, maybe even more with a project as active as Jenkins :). BUT, depending on your environment (how many jobs, nodes, exotic configs, unmaintained/custom plugins...), this may not be a so big issue in the end.

Re: How to configure Maven Installation via Groovy

2016-01-23 Thread Baptiste Mathus
https://github.com/batmat/jez/blob/master/jenkins-master/init_scripts/add_maven_auto_installer.groovy auto-installs Maven 3.3.9 for example. HTH 2016-01-21 17:43 GMT+01:00 Антон Юшков : > Useful for me: > import jenkins.model.* > > a=Jenkins.instance.getExtensionList(hudson.tasks.Maven.Descript

Re: [theme] New Jenkins Material Design Theme

2016-01-23 Thread Baptiste Mathus
+1. Nice! Quick feedback: IMO, you should put bigger (or zoomable) screenshots on your website. I just had a look and would have liked being able to see things a bit more closely. Thanks! 2016-01-21 18:23 GMT+01:00 Slide : > I really like this theme, nice work! > > On Thu, Jan 21, 2016 at 10:17

Re: [theme] New Jenkins Material Design Theme

2016-01-23 Thread Mohan PAKALAPATI
Looks great +1 On 21 Jan 2016 22:46, "Afonso F" wrote: > Hi guys, > > I created a Jenkins theme based on Google Material Design. It changes the > layout and icons using SVG ones. Take a look! > > http://afonsof.com/jenkins-material-theme/ > > >

Re: downloads from archives.jenkins-ci.org never finish...

2016-01-23 Thread Alex Domoradov
Any updates? -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://gro

Re: downloads from archives.jenkins-ci.org never finish...

2016-01-23 Thread Alex Domoradov
I do really need exactly jenkins_1.565.2_all.deb (debian 7). Could anyone share with me? -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubs

Re: Jenkins Upgrade Installation Constraints and Risks

2016-01-23 Thread Nia Hunter
Thank you this has been most helpful and I will be sure to come back with any questions if I encounter any issues! Sent from my iPhone > On Jan 23, 2016, at 8:35 AM, Baptiste Mathus wrote: > > Hi, > > Basically, yes, there are obviously many risks doing a fast-forward of almost > 5 years, m

Re: Jenkins Upgrade Installation Constraints and Risks

2016-01-23 Thread Mark Waite
Since you spent a long time on a single version, you should probably upgrade to a long term support version (currently 1.642.1) rather than to a weekly version. LTS versions have additional testing and tend to be supported longer (though none of them are supported for 5 years). Mark Waite On Sat

Re: AWS ECS Plugin

2016-01-23 Thread nicolas de loof
You could use docker-custom-build-environment-plugin for this exact scenario, with bind mounted /var/run/docker.sock so you can run containers side by side (vs "in-docker"). Would need some tests on my side to ensure this scenario is supported, I have this on my TOD for a while but never took time

Re: Jenkins Upgrade Installation Constraints and Risks

2016-01-23 Thread Nia Hunter
Noted! Thanks!!! Sent from my iPhone > On Jan 23, 2016, at 12:37 PM, Mark Waite wrote: > > Since you spent a long time on a single version, you should probably upgrade > to a long term support version (currently 1.642.1) rather than to a weekly > version. LTS versions have additional testin

Re: Exception when I try to trigger buildflow job from workflow job

2016-01-23 Thread Craig Rodrigues
Hi, Thanks for posting your sample scripts. I was able to reproduce your problem. It looks like the Build Flow plugin needs to change to use the Run class, instead of AbstractBuild in order to be compatible with workflow/pipeline plugin. -- Craig On Sat, Jan 23, 2016 at 12:22 AM, EK wrote: >

Re: Exception when I try to trigger buildflow job from workflow job

2016-01-23 Thread Craig Rodrigues
Hi, I have a patch to address this issue. Would you be willing to build the build-flow-plugin from my branch and provide feedback? You can build it with: git clone https://github.com/jenkinsci/build-flow-plugin cd build-flow-plugin git fetch origin pull/70/head:70 git checkout 70 mvn install --