Re: Jenkins not correctly executing Maven task starting forked jetty.

2012-11-07 Thread Thomas Peeters
No suggestions at all? On Tuesday, November 6, 2012 4:19:23 PM UTC+1, Thomas Peeters wrote: > > Jenkins version: 1.461 > > > We are attempting to start a Jetty server in forked mode at the end of a > build pipeline. It all works, except for the forking part, that doe

job/api/json doesn't list running jobs anymore

2012-11-07 Thread Lukas Rytz
Hi, Sometime between 1.478 and 1.488 the output of JENKINS_URL/job/JOB_NAME/api/json changed. Before, the "builds" array would include running builds, now it only lists the finished builds. Since I did not see that change listed in the change log, I wonder if it's expected. If so, is there a w

Re: Jenkins not correctly executing Maven task starting forked jetty.

2012-11-07 Thread Josselin Pierre
Hi, Here's my 2 cents, for what it's worth : Are you sure the forking itself fails ? One issue that often appears with spawning process from Jenkins is that the child process might be killed once the job is finished. You might find quite a few references on this issue on google https://wiki.jen

Software builds on Windows 7 computer but not when started from Jenkins

2012-11-07 Thread Philipp Schröter
Hello, I am working on a project which uses Jenkins to start a build process involving CMake. When I run the build on the machine itself, it works. But it get's started form Jenkins it fails with a problem with CMake having problems with Visual Studio compiler. (fatal error C1902: Program datab

How to get the result of the triggered job in one email

2012-11-07 Thread Sven Finsterwalder
Hello, i have one question. In my jenkins there is one job which starts with a parameter two other build-jobs. The Job will fail if one of the triggered jobs fails and send one email. I wish to add the reason in that email why the other job is failing. Is that possible?

Re: Software builds on Windows 7 computer but not when started from Jenkins

2012-11-07 Thread Slide
Can you give a build log? On Wed, Nov 7, 2012 at 3:54 AM, Philipp Schröter wrote: > Hello, > > I am working on a project which uses Jenkins to start a build process > involving CMake. When I run the build on the machine itself, it works. But > it get's started form Jenkins it fails with a proble

Re: Software builds on Windows 7 computer but not when started from Jenkins

2012-11-07 Thread Philipp Schröter
Sure. Updating https://*** [...] At revision 8019 [Build project on Windows 7 (vm2)] $ cmd /c call C:\Users\jenkins-slave\hudson5365928573798612311.bat C:\home\jenkins-slave\workspace\Build project on Windows 7 (vm2)>call build_script_WIN7_64.bat "Build project on Windows 7 (vm2)" --- Befo

Fingerprinting

2012-11-07 Thread David Weintraub
How resource intensive is fingerprinting? What if I fingerprint all files that I build? We deploy a lot of zipped archives instead of jars and wars in our JBoss instant. This way, we can generate various client configurations. However, it also means that the build assets can get moved around qu

Re: Jenkins not correctly executing Maven task starting forked jetty.

2012-11-07 Thread Thomas Peeters
Well.. The process is already in deamon mode, and a switch called "waitForChild" in the Jetty configuration is set to false, so it is an independent process. Without those two the Maven job would already be either held by the jetty server or would start and stop as soon as the job is finished

Re: Execute shell failure

2012-11-07 Thread rakesh
I see user info in: /Library/LaunchDaemons/org.jenkins-ci.plist content of this .plist: rpatel$ cat org.jenkins-ci.plist http://www.apple.com/DTDs/PropertyList-1.0.dtd";> StandardOutPath /var/log/jenkins/jenkins.log StandardErrorPath /var/log/jenkins/jenkins.log EnvironmentV

Re: Execute shell failure

2012-11-07 Thread Josselin Pierre
Giving the admin right to a user depends on your system, not on Jenkins. I've never used a Mac, so I can't help you there. However, good practice is often to NOT give admin right to a Jenkins user, but just the rights it actually needs, and not be allowed to do no anything everywhere. Jenkins sh

Slave issue with SSH

2012-11-07 Thread Andrew Melo
Hey guys, I periodically get the following explosion occasionally on nodes started with the SSH plugin: #1107 New files added to open blocks are inserted correctly ... ok #1117 Test workflow resubmission via ACDC ... FATAL: Unable to delete script file /tmp/hudson6039265956144709398.sh hudson.uti

How do I change/customize the BUILD_TAG

2012-11-07 Thread Kotos
how do I make the build tag use my own custom version for every job instead of the Jenkins built in BUILD_TAG = String of jenkins-${JOBNAME}-${BUILD_NUMBER}. I do not want the prefix of jenkins in my BUILD TAG. Plus when I type git I would like to customize every build to be ${APP}-${RELEASE-

Run a job last in order

2012-11-07 Thread J Arrizza
I've searched google for this but nothing popped out. I have 122 jobs that run automated tests at-xxx. I've created an at-start job that does some initialization of directories, etc. and I've trigger the other 122 jobs to start when this one completes. So far so good... The 122 jobs run on a serv

Re: Run a job last in order

2012-11-07 Thread Josselin Pierre
Hi, You could give a try to the Join plugin, especially since you have a parent job : https://wiki.jenkins-ci.org/display/JENKINS/Join+Plugin On Wednesday, November 7, 2012 5:50:19 PM UTC+1, JohnA wrote: > > I've searched google for this but nothing popped out. > > I have 122 jobs that run auto

Re: Run a job last in order

2012-11-07 Thread Marek Gimza
Another alternative is to use MultiJob plugin https://wiki.jenkins-ci.org/display/JENKINS/Multijob+Plugin ... Mgimza On Wed, Nov 7, 2012 at 11:57 AM, Josselin Pierre wrote: > Hi, > > You could give a try to the Join plugin, especially since you have a > parent job : > https://wiki.jenkins-ci.o

Re: Run a job last in order

2012-11-07 Thread Josselin Pierre
There is also the build flow plugin https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin or even simply the built-in "trigger/call another job" step. =) 2012/11/7 Marek Gimza > Another alternative is to use MultiJob plugin > > https://wiki.jenkins-ci.org/display/JENKINS/Multijob+Plugi

Re: Run a job last in order

2012-11-07 Thread J Arrizza
Thanks for the replies! Looks like quite a few choices, all of which look pretty good. Thanks again, John On Wed, Nov 7, 2012 at 9:08 AM, Josselin Pierre wrote: > There is also the build flow plugin > https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin > > or even simply the built-in

JENKINS_HOME on NFS

2012-11-07 Thread Joshua Boyd
Is it considered safe to point JENKINS_HOME to a NFS mount? Both the machine running Jenkins and the NFS server are linux. In trying to search for answers, I mostly see references to slaves pointing at NFS, not Jenkins master.

Re: JENKINS_HOME on NFS

2012-11-07 Thread nicolas de loof
This is the way Cloudbees "Jenkins Enterprise" is handling High Availability, so I guess this is safe :) 2012/11/7 Joshua Boyd > Is it considered safe to point JENKINS_HOME to a NFS mount? Both the > machine running Jenkins and the NFS server are linux. > > In trying to search for answers, I mo

Re: Execute shell failure

2012-11-07 Thread Sami Tikka
The usual way to use Jenkins is for the developer to commit his changes to a version control repository, which Jenkins will monitor and when it sees a new commit, Jenkins will check out a copy of the sources under the Jenkins work dir and then execute some commands, typically to build and test t

Re: Execute shell failure

2012-11-07 Thread rakesh
I wanted to see if I can use Jenkins to run automated tests: calabash, selenium etc. So I was just trying to run using execute shell option. Yes, I tried Jenkins app, works just fine for local test run. Thanks, Rakesh On Wednesday, November 7, 2012 5:16:51 PM UTC-5, sti wrote: > > The usual way