Re: configuring Mavin Setup automatically on Mac

2013-12-03 Thread Daniel Beck
https://wiki.jenkins-ci.org/display/JENKINS/Tool+Auto-Installation First Google hit. On 02.12.2013, at 08:21, kumar wrote: > Hi > > I am new to Jenkins and have setup Jenkins on a Mac. to setup Mavin I > selected "Install Automatically" and clicked on Save. Is there something that > should

Re: configuring Mavin Setup automatically on Mac

2013-12-03 Thread Aldrin Leal
when you start a maven-based job, it should download and install one automagically on the slave node, doesn't it? -- -- Aldrin Leal, Master your EC2-fu! Get the latest ekaterminal public beta http://www.ingenieux.com.br/products/ekaterminal/ On Wed, Dec 4, 2013 at 3:17 AM, kumar wrote: > Any

Re: configuring Mavin Setup automatically on Mac

2013-12-03 Thread kumar
Any info on this? On Monday, December 2, 2013 12:51:56 PM UTC+5:30, kumar wrote: > > Hi > > I am new to Jenkins and have setup Jenkins on a Mac. to setup Mavin I > selected "Install Automatically" and clicked on Save. Is there something > that should happen? Can i see where or if Mavin is insta

Re: Pull a Build with the API

2013-12-03 Thread Mark Waite
Couldn't you perform the http GET with the Python urllib2 library to satisfy the lead of your group? Then the download process is in Python, and it uses the standard Jenkins API for downloading artifacts (http GET). Mark Waite On Tue, Dec 3, 2013 at 2:55 PM, wrote: > Richard, > > thanks for

How can I set the build description from a parameter?

2013-12-03 Thread cscooper
I've got a parameterized matrix build, one of the parameters is called "Description" and in the "Prepare an environment for the run" section, under "Script Content", I have this: curl -G -s --data-urlencode "Description=$Description" "http://localhost:8080/job/$JOB_NAME/$BUILD_NUMBER/submitDescript

How to Install Jenknis API for Python

2013-12-03 Thread joshuamarberry
Hello, I'm new to Jenkins and use python only to run test scripts on our custom test executive. We use Python 3.2 and we wrote software to allow python to communicate with our test executive. I'm trying to figure out how to install the Jenkins API for python. First I looked into PIP and came

Re: Running daemon processes

2013-12-03 Thread Daniel Beck
Good tools and scripts can handle spaces and other weirdness in file/folder names. This is not a Jenkins issue (unless it happened in a Jenkins component -- but it doesn't look like it!). If you write your own shell scripts, remember to double-quote variable references. For example, `some_comma

Re: Running daemon processes

2013-12-03 Thread Jonathan Rogers
andrea crotti wrote: > > Argh true I missed that, I expected that jenkins would have quoted the > spaces since it lets me enter them, is that a known issue than? > I'll try without tomorrow, thanks > First, is the script in question in an "Execute shell" block? Second, is your script doing anythin

Re: Upgrade from 1.472 to 1.541 failing

2013-12-03 Thread Mark Mikulec
Confirmed, JENKINS-20630. On 3 December 2013 17:04, Daniel Beck wrote: > 'Access violation in the error log' is probably JENKINS-20630 / > JENKINS-20779. > > On 03.12.2013, at 22:53, Mark Waite wrote: > > > That is good to hear. If you can afford the time, I think the developers > would like

Re: Upgrade from 1.472 to 1.541 failing

2013-12-03 Thread Daniel Beck
'Access violation in the error log' is probably JENKINS-20630 / JENKINS-20779. On 03.12.2013, at 22:53, Mark Waite wrote: > That is good to hear. If you can afford the time, I think the developers > would like to know you're setup that failed upgrade. However, they need you > to narrow the cau

Re: Pull a Build with the API

2013-12-03 Thread joshuamarberry
Richard, thanks for the advice. This does work. But, I'm still interested in a way doing it with the API as the lead of my group would prefer it done that way. On Monday, December 2, 2013 6:33:48 PM UTC-8, Richard Bywater wrote: > No need to use the API to get the builds. Basically once you

Re: Running daemon processes

2013-12-03 Thread andrea crotti
Argh true I missed that, I expected that jenkins would have quoted the spaces since it lets me enter them, is that a known issue than? I'll try without tomorrow, thanks On 3 Dec 2013 20:48, "Geoff Cummings" wrote: > > Not sure what that script is doing, but make sure to consider spaces in > the j

Re: Upgrade from 1.472 to 1.541 failing

2013-12-03 Thread Mark Waite
That is good to hear. If you can afford the time, I think the developers would like to know you're setup that failed upgrade. However, they need you to narrow the cause of the upgrade failure and that usually takes time and experimentation Mark On Dec 3, 2013 12:22 PM, "Mark Mikulec" wrote: > Hi

Re: Running daemon processes

2013-12-03 Thread Geoff Cummings
Not sure what that script is doing, but make sure to consider spaces in the jenkins job name. /var/lib/jenkins/jobs/spotlight integration and selenium/workspace Personally I don't allow spaces in job names.. On 3 Dec 2013, at 18:14, Jonathan Rogers wrote: andrea crotti wrote: So I was tryin

Re: Upgrade from 1.472 to 1.541 failing

2013-12-03 Thread Mark Mikulec
Hi Mark, Thanks for the tip - that build worked flawlessly! Mark __ Learn more about.me . On 2 December 2013 13:48, Mark Waite wrote: > If you were running a version of Jenkins for that long without upgrading, > you

Re: Is it possible to integrate with other tools for automatic creation of projects?

2013-12-03 Thread JonathanRRogers
On Tuesday, December 3, 2013 7:47:46 AM UTC-5, suresh kamini wrote: > > Hi Kannan, > > How to get report through Jenkins api xml/json/python > > Jenkins failure rate, > success rate > How many builds done perday > > Build is triggered by manual or timer > Check out this earlier discussion:

Re: Avoiding an unnecessary build entirely

2013-12-03 Thread CLOSE Dave
On 2013-11-19, I wrote: > Using the Build Flow plugin, I have a master job containing a > sequence of steps invoking other, ordinary jobs. The order of the > ordinary build jobs is important, sometimes because of job > dependencies but sometimes only to avoid possible conflicts. In the > latter ca

better views for tests (plugin?)

2013-12-03 Thread phil swenson
We have our test suite sharded across 15 jenkins nodes because they take so long to execute. We have really struggled with getting a nice aggregate view into all the test results. Right now we have to drill into each job and view the test results by job (no aggregation). Does anyone have a sugge

Re: Running daemon processes

2013-12-03 Thread Jonathan Rogers
andrea crotti wrote: > So I was trying to do something like this, and I created this bash > script which locally works perfectly fine. > > However it doesn't seem to work at all with the error pasted below. > Is Jenkins able to run any bash script? > It seems like it should be I'm not sure why it g

Re: Running daemon processes

2013-12-03 Thread andrea crotti
So I was trying to do something like this, and I created this bash script which locally works perfectly fine. However it doesn't seem to work at all with the error pasted below. Is Jenkins able to run any bash script? It seems like it should be I'm not sure why it gives this error though.. #!/bi

Re: disable jenkins autostart on ubuntu

2013-12-03 Thread tomasz ducin
Thank you guys very much! It was, in fact, ubuntu-related issue instead of jenkins-related. cheers W dniu wtorek, 3 grudnia 2013 16:41:20 UTC+1 użytkownik Mark Waite napisał: > > /etc/default/jenkins includes a RUN_STANDALONE value which defaults to > "true". If you set it to "false", then Jen

Re: disable jenkins autostart on ubuntu

2013-12-03 Thread Mark Waite
/etc/default/jenkins includes a RUN_STANDALONE value which defaults to "true". If you set it to "false", then Jenkins will not start as a service. Be sure you stop the service before marking it false (/etc/init.d/jenkins stop), otherwise the stop script will refuse to stop the service, because it

[ANN] Buildflow extensions plugin

2013-12-03 Thread James Nord (jnord)
Hi all, As per the Jenkins user conference in Palo Alto - I can now officially announce the open sourcing of the build flow extensions plugin. This plugin adds an extension to aid in the co-ordinating of the jobs within i

New version of Priority Sorter - upgrade woes

2013-12-03 Thread Matthew.Webber
I was previously running the Priority Sorter plugin (https://wiki.jenkins-ci.org/display/JENKINS/Priority+Sorter+Plugin) v1.3, and have now updated to v2.0 (I also updated Jenkins from 1.539 to 1.542.) The wiki page for v2.0 states "If you are already using the Priority Sorter and you're upgrad

[ANN] Cucumber Results plugin.

2013-12-03 Thread James Nord (jnord)
Hi all, As per the Jenkins user conference in Palo Alto - I can now officially announce the beta release (and open sourcing) of a Cucmber integration to Jenkins. This is available in the experimental plugins update cente

Re: disable jenkins autostart on ubuntu

2013-12-03 Thread Richard Lavoie
Did you take a look in /etc/default/ ? That's usually where the service options are defined in ubuntu. On 2013-12-03, at 07:20, tomasz ducin wrote: > I've installed jenkins on my ubuntu 11.10 according to the official tutorial. > Anyway, I don't want jenkins to autoload on startup. I want to s

Re: disable jenkins autostart on ubuntu

2013-12-03 Thread Mike Bayliss
update-rc.d jenkins disable On Tue, Dec 3, 2013 at 1:20 PM, tomasz ducin wrote: > I've installed jenkins on my ubuntu 11.10 according to the official > tutorial. > Anyway, I don't want jenkins to autoload on startup. I wa

disable jenkins autostart on ubuntu

2013-12-03 Thread tomasz ducin
I've installed jenkins on my ubuntu 11.10 according to the official tutorial. Anyway, I don't want jenkins to autoload on startup. I want to star it manually only when I want to. And I don't know how to do that. I've been se

Communication problem with slave is not notified by email

2013-12-03 Thread Rui Fernando Hayashi
I've had some exceptions like this lately: FATAL: hudson.remoting.RequestAbortedException: java.io.IOException: Unexpected termination of the channel hudson.remoting.RequestAbortedException: hudson.remoting.RequestAbortedException: java.io.IOException: Unexpected termination of the channel at

Re: Best method to copy (release installation) files to Jenkins slaves (Windows)

2013-12-03 Thread Edin Mujkanovic
Thank you, Eric (sorry for the late reply). We create the installation files in our build pipeline and then publish these to an artifact repository ("outside" Jenkins) so the Copy Artifact plugin could be used but would the require us to first copy the installation files back to the workspace o

Test Patch-parameter plugin

2013-12-03 Thread Evangeline Amalina
Hi, Do someone have idea on how to test patch-parameter plugin in jenkins. I ran a build by giving a file as patch parameter. Build ran successfully, but the file is not replaced in my build workspace. Its still the latest commited fiel in SVN. Do we need to do some scripting work to push the