Re: Running daemon processes

2013-12-04 Thread andrea crotti
So well I tried renaming the job removing the spaces (after I noticed that 
the other jobs didn't have names in) and now it works fine.
The script is running in the Execute shell block yes.
But the thing is that the error comes before my script is executed, when 
Jenkins is still trying to set up the directories to run the job, so I'm a 
bit surprised because it looks like at this point it should handle the 
spaces.

I'm not using any Jenkins variable in my script if that makes a difference..
Anyway it's fine now so problem solved, thanks

On Tuesday, December 3, 2013 10:11:56 PM UTC, JonathanRRogers wrote:

 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 anything with the Jenkins project (job) name? Third, 
 in what context would you expect the name of the job to be quoted? 
 Without knowing the context, it's impossible to answer the question 
 usefully since many factors can affect how spaces are handled, escaped 
 or quoted, especially when a shell is involved. 

 -- 
 Jonathan Rogers 



-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


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..

#!/bin/bash
SPOTLIGHT_PID=not
API_PID=not

function create_ve {
if [ ! -d ve ]
then virtualenv ve
fi
}

function start_spotlight {
cd wazoku-spotlight/spotlight
create_ve
ve/bin/pip install -r test-requirements.txt
ve/bin/python manage.py runserver 
SPOTLIGHT_PID=$!
cd -
}

start_spotlight

cd wazoku-spotlight/spotlight
ve/bin/python manage.py test tests/integration --with-xunit

kill $SPOTLIGHT_PID

ERROR:

Pip.done.
./run-tests-jenkins.sh: ve/bin/pip: /var/lib/jenkins/jobs/spotlight: bad 
interpreter: No such file or directory
/var/lib/jenkins/jobs/spotlight integration and selenium/workspace
Traceback (most recent call last):
  File run.py, line 1, in module
from bottle import run
ImportError: No module named bottle
New python executable in ve/bin/python
Installing 
Setuptools..done.
Installing 

On Thursday, November 21, 2013 7:04:41 PM UTC, JonathanRRogers wrote:

 On Wednesday, November 20, 2013 6:48:26 AM UTC-5, andrea crotti wrote:

 Hello everyone,

 I'm trying to move some integration tests for our django app to Jenkins.

 I already succesfully managed to run integration tests for our business 
 logic doing with coverage and violations as well, using something like:

 COVER_OPTIONS=--with-coverage --cover-package=company_core 
 --cover-inclusive --cover-erase

 ve/bin/pip install -r test-requirements.txt
 source ve/bin/activate
 nosetests --nologcapture --with-xunit $COVER_OPTIONS 
 company_core/tests/unit company_core/tests/integration
 python -m coverage xml -i
 pylint -f parseable -d I0011,R0801 company_core | tee pylint.out


 However for the app itself, we need something more, because I need to be 
 able to run locally one API server on port 9797 and the django app itself 
 on port 8000.

 So ideally the flow should be the following on Jenkins:
 - checkout everything
 - run api and app daemons
 - run integration tests
 - collect results and kill daemons

 I still haven't found a proper way to run the daemon processes though, 
 any suggestions?
 Thanks


 AFAIK, managing daemons is outside of the scope of Jenkins unless there's 
 a plugin for managing a specific kind of daemon.  Just use ordinary 
 commands to start and stop daemons in a shell script within the job. It may 
 be necessary to set environment variable BUILD_ID=dontKillMe to tell 
 Jenkins not to kill a daemon process:
 URL:https://wiki.jenkins-ci.org/display/JENKINS/ProcessTreeKiller


-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


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 em...@gcummings.com wrote:


 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 jonathanrrog...@gmail.com
 wrote:

 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 gives this error though..


 In Execute shell blocks, Jenkins just tries to use the system shell by
 default AFAIK. On Unix-like systems, that should be /bin/sh, which could
 be Bash or something else, depending on the system. You should try to
 make the scripts you put in Execute shell blocks standard Bourne shell
 and/or test them with /bin/sh. Alternatively, you can set a specific
 shell executable in the global Jenkins config.


 #!/bin/bash

 SPOTLIGHT_PID=not

 API_PID=not


 function create_ve {

if [ ! -d ve ]

then virtualenv ve

fi

 }


 function start_spotlight {

cd wazoku-spotlight/spotlight

create_ve

ve/bin/pip install -r test-requirements.txt

ve/bin/python manage.py runserver 

SPOTLIGHT_PID=$!

cd -

 }


 start_spotlight


 cd wazoku-spotlight/spotlight

 ve/bin/python manage.py test tests/integration --with-xunit


 kill $SPOTLIGHT_PID


 Is the above script what you put in an Execute shell block? Don't put
 a shebang in those, though it shouldn't matter much.


 ERROR:



 Pip.done.

 ./run-tests-jenkins.sh: ve/bin/pip: /var/lib/jenkins/jobs/spotlight:

 bad interpreter: No such file or directory

 /var/lib/jenkins/jobs/spotlight integration and selenium/workspace

 Traceback (most recent call last):

   File run.py, line 1, in module

from bottle import run

 ImportError: No module named bottle

 New python executable in ve/bin/python

 Installing


 Setuptools..done.

 Installing


 It's pretty clear that something couldn't find
 /var/lib/jenkins/jobs/spotlight. Figure out what was looking for that
 file and why it couldn't find it.

 --
 Jonathan Rogers

 --
 You received this message because you are subscribed to the Google Groups
 Jenkins Users group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to jenkinsci-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.

 --
 You received this message because you are subscribed to a topic in the
 Google Groups Jenkins Users group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/jenkinsci-users/zheMR_OVYI8/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 jenkinsci-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


best way to update jenkins on ubuntu 13.10?

2013-11-21 Thread andrea crotti
On ubuntu server now there is this version:
Jenkins ver. 1.509.2 http://jenkins-ci.org/

which however is not letting me install Cobertura and other few things for 
example.

I would like to update it but also still use a standard package style, is 
that possible?
There was a PPA for that but very old and outdated, any other possibility?
Thanks

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: best way to update jenkins on ubuntu 13.10?

2013-11-21 Thread andrea crotti
It complains about the key now when I try to do the update though..

W: GPG error: http://pkg.jenkins-ci.org binary/ Release: The following 
signatures couldn't be verified because the public key is not available: 
NO_PUBKEY 9B7D32F2D50582E6

On Thursday, November 21, 2013 2:39:12 PM UTC, andrea crotti wrote:

 On ubuntu server now there is this version:
 Jenkins ver. 1.509.2 http://jenkins-ci.org/

 which however is not letting me install Cobertura and other few things for 
 example.

 I would like to update it but also still use a standard package style, is 
 that possible?
 There was a PPA for that but very old and outdated, any other possibility?
 Thanks


-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.