Re: Unable to delete script file error

2012-08-27 Thread JanneG
Any update on this error? We're running Jenkins 1.467 and we get this error atleast once a say on our builds, it's very annoying. Stack trace: FATAL: Unable to delete script file /tmp/hudson7509907129274916629.sh hudson.util.IOException2: remote file operation failed: /tmp/hudson7509907129

List successful builds | dynamic parameter plugin

2012-08-27 Thread arjun tr
Is there a way to list only the successful builds of another job in dynamic parameter plugin/ My build job generates artifacts which are archived, this then is consumed by deployment jobs by using copy artifacts plugin and specifying builds using string parameter. Now is there a way to list only t

Re: jenkins Unable to find build script at C:/

2012-08-27 Thread Sami Tikka
Jenkins has a built-in limitation: It must check out your source tree to local disk before it is able to access files in version control server. Go to job configuration. Then, under "Source Code Management", choose Subversion. In the Repository URL type https://svn.qsu-dev.com/svn/moveon4-java

Re: Mac OSX slave timeouts

2012-08-27 Thread Sami Tikka
The 3.5 sec clock drift is not yet alarming but it does cause me to raise an eyebrow. You are not synchronizing clocks between your Jenkins master, slave and SCM server? Try to get the clocks in sync. Install ntp daemon where it is missing and configure them to sync to your organization's ntp s

Re: Jenkins Android Emulator plugin is no longer working

2012-08-27 Thread Christopher Orr
Hi again, As I just wrote in http://jenkins-ci.org/issue/14901 -- I'm really having a tough time reproducing this myself. Can you give any other hints about your environment? Which OS? 32- or 64-bit? Did this work on a previous version of the Android SDK Tools -- if so, which version? Ar

Re: ant global environmental variable setup

2012-08-27 Thread Qazwart
Sorry it got away… Don't hard code paths in your build.xml file. Either put the selenium jar in your project (and your repository, so it's checked out with the rest of your project. Then use the relative path to your jar. -- David Weintraub da...@weintraub.name On Aug 27, 2012, at 2:20 PM, p

Supplying PermGen settings to Grails Build step

2012-08-27 Thread Jon Palmer
We have a project that contains a Grails build step that runs the Grails test suites. However, we are struggling to understand how to supply PermGen settings to the Grails command line. We have multiple targets for the grails task "clean dbm-update test-app". We can supply a number of propertie

Re: ant global environmental variable setup

2012-08-27 Thread Qazwart
DO NOT HARD CODE PATHS IN YOUR BUILDXM FILE! I'm sorry for shouting, but your selenium jar is hardcoded in Your build.xml -- David Weintraub da...@weintraub.name On Aug 27, 2012, at 2:20 PM, praneeth wrote: > Hi David.. > > I have tried leaving the build file filed empty..it worked ,but i got

Re: ant global environmental variable setup

2012-08-27 Thread Qazwart
The build should be exactly the same as if you're running it from the command line of another machine. I tell the developers that builds should be simple: I define a small needed set of tools, Subversion, JDK 1.6, and Ant 1.8. I should be able to checkout and build by just typing "ant". If y

Re: ant global environmental variable setup

2012-08-27 Thread praneeth
Hi David.. I have tried leaving the build file filed empty..it worked ,but i got another problem regarding the jar files. I have use few jar file including the selenium server to run my tests in my local machine..how can I make use of them while running through a source repository?? here is t

Re: ant global environmental variable setup

2012-08-27 Thread praneeth
Hi, Many thanks for your reply...I will try removing the build file filed empty..one more question is it necessary to specify the jar file path when running through jenkins??? Regards praneeth On Monday, 27 August 2012 12:37:34 UTC+1, praneeth wrote: > > Hi > > Can yo

Re: Perforce plugin and Globa Password from EnvInject ?

2012-08-27 Thread Richard J
Confirmed- Both EnvInject and MaskPassword global passwords work as advertised in Perforce plugin. NOTE: Don't forget to mark the checkbox in the job config to allow use of the defined global passwords in that job! On Saturday, August 25, 2012 4:18:00 PM UTC-7, Rob Petti wrote: > If it doesn'

Re: ant global environmental variable setup

2012-08-27 Thread Qazwart
Why is there a "https:" in your directory? When you specify where you build.xml file is located, you specify where it is checked out in relationship to the working directory, and not the URL in your repository. Normally, you don't have to even specify where the build file is located as long as it

Re: Mac OSX slave timeouts

2012-08-27 Thread Chuck Doucette
I rebooted the machine and reran every job destined to be run on that Mac slave node. The all completed quickly and successfully. Now, as I monitor the slave node, here's what I see for it: Clock Difference: 3.5 sec ahead Response Time 3410 ms When I login to the machine (as myself, not the Jen

Re: ant global environmental variable setup

2012-08-27 Thread praneeth
Hi , when i run the bild in the jenkins I am getting the following error: Started by user *** Building in workspace /var/lib/jenkins/jobs/moveon4/workspace Updating https://svn.qsu-dev.com/svn/moveon4-javatests/trunk/moveon4tests1

Re: Specifying user name and password for svn repo in Job configuration.

2012-08-27 Thread tm
Hi David, Thanks for the reply. When someone enter SVN credentials in the screen [1] you mentioned that will end up in [2]. Correct me if I'm wrong, but as far as I understood anything that's stored there will be for entire Jenkins (not exactly per job). However, by playing around with jenkins for

Re: Mac OSX slave timeouts

2012-08-27 Thread Chuck Doucette
Here is more information, I just saw this message on the Manage Jenkins screen (from the master node, about the mac slave with problems): There are more SCM polling activities scheduled than handled, so the threads are not keeping up with the demands. Check if your polling is hanging, and/or in

Re: Mac OSX slave timeouts

2012-08-27 Thread Chuck Doucette
Yes, I believe the Mac hardware is in good general health. The machine has 3GB of physical memory, so I believe it has plenty of free memory. I don't believe it is swapping - but I'm not sure how to tell. I have tried running Activity Monitor and JConsole. As far as I can tell, there is no other s

Re: Specifying user name and password for svn repo in Job configuration.

2012-08-27 Thread Qazwart
Jenkins can store subversion credentials per job, or under the $HOME.subversion/auth directory. If you need a different credential for a specific job, go to that job's configuration. Click on the help button by where you enter the Subversion URL. Read the help. There's a link that will allow y

Solaris slave: NoClassDefFoundError: hudson/remoting/PipeWindow$Key

2012-08-27 Thread natalie_public
Hi there, I'm trying to use Jenkins to build a C++ project on SunOS 5.10. The master (Jenkins 1.477) runs on Windows XP, the compilation is executed on a slave ("starnberg"). I often get the following errors: -- Started by user anonymous [EnvInject] - Loading node environment variables. Building

Re: ant global environmental variable setup

2012-08-27 Thread Qazwart
On Aug 27, 2012, at 7:37 AM, praneeth wrote: > Can you please let me know how can i set ant as a global environment variable > in jenkins configuration..? What do you mean? If you're using ant, you can auto-install it. Jenkins knows where it is and runs it without you doing anything. There a

ant global environmental variable setup

2012-08-27 Thread praneeth
Hi Can you please let me know how can i set ant as a global environment variable in jenkins configuration..? Regards praneeth

[jenkins] use specific settings file for maven in jenkins

2012-08-27 Thread Sophie . Dahan
hi, i'm trying to create a free-style job with a Maven step. My problem is the folowing : I when running the maven command : mvn -o -s toto/settings.xml install The settings.xml contains the line : toto/repository My workspace structure : jenkins/workspace/JOB/toto/settings.xml jenkins/workspace

Re: jenkins Unable to find build script at C:/

2012-08-27 Thread praneeth
Hi Mark , I have placed the selenium tests in the subversion..but still I am getting this error. My buid.xml file is at https:/svn.qsu-dev.com/svn/moveon4-javabrowsertests/trunk/moveon4tests1 but you can see in the error that it is automatically pointing to /var/lib/jenkins/jobs/moveon4/works

Specifying user name and password for svn repo in Job configuration.

2012-08-27 Thread Ramith Jayasinghe
Hi Guys, I trying to figure out how to pass credentials (user name and password) for svn repository in the job configuration xml. I checked the code base [1] and this feature ( per job credential) seems to be available. So has anyone tried this before? Could someone share a sample Xml fragment