Re: How to Schedule build in Jenkins

2013-03-05 Thread Octavian Covalschi
Have you asked uncle google at all? Hint: search for jenkins svn polling On Tue, Mar 5, 2013 at 6:37 AM, radha madhavi radha.madh...@gmail.comwrote: Hi All, I have integrated Jenkins with WebDriver and SVN. I want to schedule the build in such a way, when i commit the code to SVN it should

Re: Pagination for 'All' view ?

2013-03-05 Thread Octavian Covalschi
*Subject:* Re: Pagination for 'All' view ? ** ** As far as I know, this isn't possible. Vincent ** ** 2013/3/5 Octavian Covalschi octavian.covals...@gmail.com Bump 1 of 2 ** ** On Mon, Mar 4, 2013 at 3:33 PM, Octavian Covalschi octavian.covals

Pagination for 'All' view ?

2013-03-04 Thread Octavian Covalschi
Hi, Is there an easy way to add pagination to 'All' view in Jenkins? We have about 200 small jobs created and may have more, I'd like to paginate those, or limit somehow list of them... Thank you in advance. PS: All jobs are pretty much the same, so I can't really filter/group them... -- You

Re: jenkins wins first place in purim custom content...

2013-02-27 Thread Octavian Covalschi
Shoes color doesn't match... On Wed, Feb 27, 2013 at 7:21 AM, Eyal Edri ee...@redhat.com wrote: Since i manage jenkins for over 2 years now it was natural to dress up as him! I won 1st place in a custom contest of the company with it.. http://postimage.org/image/e7k9j8mbb/ (i even had 3

Re: Run Jenkins under different Linux user

2013-02-27 Thread Octavian Covalschi
Yes, defining those inside the script should be enough. On Wed, Feb 27, 2013 at 5:33 AM, mwpowellhtx mwpowell...@gmail.com wrote: Hello, I've installed under Ubuntu Linux and have the service running as anonymous. I want it to run under a jenkins user, and set the home to something other

Re: All nodes are Dead after upgrade to 1.501

2013-02-15 Thread Octavian Covalschi
What happens if you add new ones? On Fri, Feb 15, 2013 at 2:29 AM, Adrian datenschutzbestimmun...@gmail.comwrote: No one an idea or an similar problem? Every night the Jenkins starts some internal Job and kills all nodes. -- You received this message because you are subscribed to the

Re: ssh://IP address/Path to git repo Does not work

2013-02-14 Thread Octavian Covalschi
It looks like JM and JS are 2 different machines, yes? Is the job being executed on JM or JS? How are you populating /var/www/invo_app ? Recently I have tried jenkins with git to pull from a network computer, but in my use case I had ssh://JM IP ADDRESS/my_project On Thu, Feb 14, 2013 at 4:02

Re: ssh://IP address/Path to git repo Does not work

2013-02-14 Thread Octavian Covalschi
:/var/www/invo_app . i get the repo Very confusing, there should be some documentation on how this works. Thanks, -Kamal. -- *From:* Octavian Covalschi octavian.covals...@gmail.com *To:* jenkinsci-users@googlegroups.com *Sent:* Thursday, February 14, 2013 5

Re: Monitoring Metrics (eg. code coverage) Degradation

2013-02-12 Thread Octavian Covalschi
You may not like this solution, but until someone will post a better solution, you could potentially create a simple shell task and run your coverage metrics from there... With some magic you could check the results and return 0 or 1 (i'm not sure the exact value), which will tell jenkins if it

Re: creating a tag and pushing to github

2013-02-12 Thread Octavian Covalschi
If you haven't found a way, you could try doing it using a simple exec shell step, i mean the same steps you'd do in command line... you may have to play with parameters though, so you script would know tag's name for example. On Mon, Feb 11, 2013 at 10:01 AM, Chris Withers

REST API - How reliable is color tag?

2013-02-12 Thread Octavian Covalschi
Hello, We're linking our database entities to a job in jenkins, it's 1 to 1 relation. So, as a result we'd like to display real time job's status. I found 2 ways, 1. using /job/job1/api/xml (color tag) 2. using /job/job1/lastBuild/api/xml (building, result tags) In both cases it seems possible

Re: Anyone written a config file parser/script generator?

2013-02-12 Thread Octavian Covalschi
Once you have your config.xml files backed-up you should be able to restore your jobs, through Rest API. For old buils, if they are important you should make other arrangements... Backing-up entire .jenkins directory, should help too, but you'll need more space of course. On Tue, Feb 12, 2013

Re: How to publish artifact to a SMB / CIFS share?

2013-02-09 Thread Octavian Covalschi
How do you mount/connect that share? I mean, it's OS' job to mount a network share with or w/o user/password and Jenkins would just copy your file to that share. On Sat, Feb 9, 2013 at 9:09 AM, Markus KARG mar...@headcrashing.eu wrote: I need to publish an artifact to a password-protected SMB

Master/Slave configuration questions

2013-02-07 Thread Octavian Covalschi
Hello, We have a number of Java projects, Selenium tests and using gradle to build/test everything. So far this works fine for us if it's on one machine, but we're looking to increase the number of projects/jobs and would like to be ready to scale. As a result I'm looking to setup a master +

Re: Master/Slave configuration questions

2013-02-07 Thread Octavian Covalschi
Of *Octavian Covalschi *Sent:* Thursday, February 07, 2013 11:37 AM *To:* jenkinsci-users@googlegroups.com *Subject:* Master/Slave configuration questions ** ** Hello, ** ** We have a number of Java projects, Selenium tests and using gradle to build/test everything. So far