Newly created Jenkins CI Google Plus Community

2012-12-09 Thread Fábio Uechi
For those of you who use G+ : https://plus.google.com/communities/71418043218379236 cheers Fábio

Re: Jenkins failing to auto install JDK when JENKINS_HOME is pointing to a newly created volume/filesystem

2012-11-13 Thread Fábio Uechi
This is the exception I'm getting: Building in workspace /jenkins/workspace/teste Installing JDK jdk-6u34-oth-JPR Downloading JDK from http://download.oracle.com/otn/java/jdk/6u34-b04/jdk-6u34-linux-x64.bin Downloading 72036348bytes Installing /jenkins/tools/JDK/1.6.34/jdk.sh [1.6.34] $

Re: Jenkins failing to auto install JDK when JENKINS_HOME is pointing to a newly created volume/filesystem

2012-11-13 Thread Fábio Uechi
Found it! There was a problem in the fstab entry which was responsible for mounting the partition. I was using *noexec* instead of *exec.* Just had to change this: */dev/vg0/jenkins /jenkins ext4 defaults,auto,noatime,noexec 0 0* * * for this: * * */dev/vg0/jenkins /jenkins ext4

Re: passing parameters to maven build

2012-11-13 Thread Fábio Uechi
I can thing of two ways: 1) property file or 2) environment variable On Tuesday, November 13, 2012 5:15:55 PM UTC-2, Levin, Ilya wrote: Hello, I have created a maven build project, in the Goals and Options section I have: ` install -P some profile -Dproperty=VALUE` VALUE

Re: Jenkins failing to auto install JDK when JENKINS_HOME is pointing to a newly created volume/filesystem

2012-11-11 Thread Fábio Uechi
report the executable bits on i.e.: -rwxr-xr-x 1 tomcat6 tomcat6 Replace tomcat6 with the respective group and user of your environment. regards Dirk On 10.11.2012 17:22, Fábio Uechi wrote: Hi, I'm running Jenkins as a daemon on Amazon Linux (standalone on winstone

Re: Jenkins failing to auto install JDK when JENKINS_HOME is pointing to a newly created volume/filesystem

2012-11-10 Thread Fábio Uechi
Forgot to mention that JENKINS_HOME was pointing to an EXT4 filesystem created with: mke2fs -t ext4 -F /dev/vg0/jenkins