Re: Digest for jenkinsci-users@googlegroups.com - 15 Messages in 7 Topics

2012-03-11 Thread Piet Debakker

Re: Digest for jenkinsci-users@googlegroups.com - 15 Messages in 7 Topics

2012-03-11 Thread Piet Debakker
On 3/11/12, jenkinsci-users@googlegroups.com wrote: > = > Today's Topic Summary > = > > Group: jenkinsci-users@googlegroups.com > Url: http://grou

RE: Newbie Question: Groovy import doesn't work under Jenkins

2012-03-11 Thread Frank Merrow
I set CLASSPATH in the system side of the Advance System Settings Environment . . . Thanks for the code example and yes, CLASSPATH looks as expected: .;C:\Program Files (x86)\Java\jre6\lib\ext\QTJava.zip;C:\Users\Merrow\test It all works from Groovy Console . . . I just have no idea wh

Re: Newbie Question: Groovy import doesn't work under Jenkins

2012-03-11 Thread Les Mikesell
On Sun, Mar 11, 2012 at 12:18 PM, Frank Merrow wrote: > > I have rebooted since adjusting CLASSPATH, verified CLASSPATH still works > under groovyConsole and restarted my system and Jenkins any number of times > thinking Jenkins  might have a cached version of my environment variables . > . . stil

Re: Git vs SVN

2012-03-11 Thread Bernard Leach
If you're looking for corporate git, take a look at gerrit. I think it addresses many of the concerns raised below. On 11/03/2012, at 13:38, David Weintraub wrote: > Git is not "better" than Subversion. Distributed version control is > not "better" than centralized version control. > > Howev

Re: Problems with location of build workspace - not unique to each project

2012-03-11 Thread Sami Tikka
Jenkins does not normally vomit null pointer exceptions when it is feeling fine. Which JVM are you using to run Jenkins? How did you install Jenkins? Could you also tell how you came to the conclusion that $WORKSPACE is the same for all your projects? -- Sami 2012/3/11 Øyvind Harboe : > I thoug

Re: Execution context from within an jenkins build

2012-03-11 Thread Sami Tikka
The sys info page shows the value of PATH in the environment of Jenkins itself. The environment variable setting you added is the value of PATH which Jenkins sets into the environment of processes it starts. -- Sami 2012/3/11 Schalk Neethling : > Hey Sami, > > Even though it does not change on th

Re: Execution context from within an jenkins build

2012-03-11 Thread Schalk Neethling
Hey Sami, Even though it does not change on the sys info screen as stated, it does clearly take effect and my build no completed successfully. Thanks a million, Schalk - Original Message - From: "Sami Tikka" To: jenkinsci-users@googlegroups.com Sent: Sunday, March 11, 2012 7:50:20 PM S

Re: Execution context from within an jenkins build

2012-03-11 Thread Schalk Neethling
Hey Sami, I updated the PATH by going to $JENKINS_URL/configure under the heading "Environment variables" and adding a new env entry as follows: Name: PATH Value: /opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin The value above is the

Re: Execution context from within an jenkins build

2012-03-11 Thread Sami Tikka
The error "Cannot run program "csslint": error=2, No such file or directory" tells me either you do not have the program csslint in your system or it is installed somewhere where ant isn't looking for it. You can check the value of PATH environment variable by e.g. going to $JENKINS_URL/systemInfo

Newbie Question: Groovy import doesn't work under Jenkins

2012-03-11 Thread Frank Merrow
I have this meaningless test class: public class Test { public String MyString() { return "This is my String"; } } And this driving script: Import Test test = new Test(); Println(test.MyString()); So I've already gotten by the problem in groovyConsole that the import didn't

Re: Execution context from within an jenkins build

2012-03-11 Thread Schalk Neethling
Hey Sami, So here is my system config Home Directory :: /Users/Shared/Jenkins/Home Under Global Properties Tool locations for Ant as follows: /usr/local/apache-ant-1.8.2 JDK installations :: /Library/Java/Home Git installations :: git Ant installations :: /usr/local/apache-ant-1.8.2 SSH Se