Re: CVS Authentication failed!

2014-02-21 Thread Michael Clarke
Which version of the cvs plugin are you using, and what authentication method does your cvs repository currently use? Thanks, Michael On 22 Feb 2014, at 06:05, Red wrote: I could add the ssh public/private key authentication, but what if I do not the access to create the user jenkins on the ser

Re: CVS Authentication failed!

2014-02-21 Thread Red
I could add the ssh public/private key authentication, but what if I do not the access to create the user jenkins on the server that is hosting my cvs repo? On Thursday, July 11, 2013 2:57:22 PM UTC-7, Sameh Tawfik wrote: > > > Hi, > > I'm using Jenkins ver. 1.522 > > Under "Manage Jenk

Write custom Jenkins plugin to execute commands on remote node?

2014-02-21 Thread Ravid Te
Hey Everyone, I am new to plugin creation, and have a need to create a plugin that generates a specific file based on user-input to a remote node containing large strings of data. *I am aware of the current "Execute Shell" build step option and "Execute remote commands via SSH" plugin, but do

Polling job is not queued even manually started job is already running

2014-02-21 Thread Jani Jegoroff
It seems that polling job is not queued when manually started job is already running. Instead polling job is trying to run at the same time. I have a Jenkins configured to Mac mini for iOS projects. Let's say I have two jobs: - Job A is scheduled periodically or started manually. This job runs

Re: CVS Authentication failed!

2014-02-21 Thread Red
I have the same problem. I just installed jenkins for the first time and want to do a very simple build that requires a cvs checkout. I have tried everything I could think of short of actually creating and setting up ssh public/private key authentication for the jenkins user (too scary) Here th

Re: How can I see all builds in a job via api/json ?

2014-02-21 Thread Daniel Beck
tree=builds will only retrieve the newest 100 builds since 1.485. Use tree=allBuilds to get everything. It's hidden by default and only shows up with depth=3 or higher (when querying a job). On 21.02.2014, at 02:35, Christian Goetze wrote: > WHen I run /job//api/json?tree=builds[url], then I

Re: How can I see all builds in a job via api/json ?

2014-02-21 Thread Christian Goetze
Hacky solution: curl -d 'script=println Jenkins.instance.getItem(jobName).builds.each{ println "${it.number}:${it.startTimeInMillis}:${it.duration}:${it.result}" };' http://localhost:8080/scriptText On Thursday, February 20, 2014 5:35:19 PM UTC-8, Christian Goetze wrote: > > WHen I run /job//ap

Re: Major Problems after upgrading to 1.532.2 LTS Release

2014-02-21 Thread Daniel Beck
Don't use the Active Directory plugin. You likely can configure the LDAP plugin[1] to do the same job. 1: https://wiki.jenkins-ci.org/display/JENKINS/LDAP+Plugin On 21.02.2014, at 00:47, Andrew Sumner wrote: > Nearly everything I do gives this error - any assistance will be greatefully > acc

RE: best approach to automate/manage jenkins jobs?

2014-02-21 Thread James Nord (jnord)
Finger slipped - this time with some links. [1] https://wiki.jenkins-ci.org/display/JENKINS/Job+DSL+Plugin [2] http://www.cloudbees.com/jenkins-enterprise-by-cloudbees-features-templates-plugin.cb From: James Nord (jnord) Sent: 21 February 2014 16:20 To: jenkinsci-users Subject: RE: best approac

RE: best approach to automate/manage jenkins jobs?

2014-02-21 Thread James Nord (jnord)
Hi Phil, There is also the Job DSL plugin[1] and Cloudbees Templates[2]. The DSL plugin (not used it) can store the DSL in source control - you can add the Cloudbees templates (done it) to an SCM like git and commit & push them after you make any changes. /James From: jenkinsci-users@googlegro

Re: best approach to automate/manage jenkins jobs?

2014-02-21 Thread Les Mikesell
On Fri, Feb 21, 2014 at 9:14 AM, phil swenson wrote: > Hi, we have a large number of jenkins jobs and would like to automate and > version control their configuration. > > From what I can tell, most people just manually config their jobs via the > UI. Unless there are only a few very simple jobs,

Is a central/shared local Maven Repo still Not safe for Jenkins master and many slaves?

2014-02-21 Thread Seena Kasmai
Greetings - It seems there is an outstanding maven issue "Concurrent-safe access to local Maven repository " which would advise against setting up all Jenkins servers to use a shared (e.g NFS mount) maven local repo - Can anyone confirm or share experi

Re: best approach to automate/manage jenkins jobs?

2014-02-21 Thread Benjamin Lau
This sounds similar to the technique described in this post: http://www.blackpepper.co.uk/generating-new-jenkins-jobs-from-templates-and-parameterised-builds/ I've used this technique where I need to have lots of different build which are mostly similar and need to be able to run in parallel. Ben

Re: best approach to automate/manage jenkins jobs?

2014-02-21 Thread John Vacz
https://wiki.jenkins-ci.org/display/JENKINS/SCM+Sync+configuration+plugin Am 21.02.2014 16:21, schrieb Mark Waite: I called the command line to extract the job definition, then stored that definition in source control. I could replay it at any time. That did not update job definitions when th

RE: best approach to automate/manage jenkins jobs?

2014-02-21 Thread Andrew Kujtan
I use an ant task that generates my jobs based off a template job it pulls down. For me, the CLI tends to be really flaky though, when re-generating ~1500 jobs 10-20 will usually fail. -Andrew From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Mark

Re: best approach to automate/manage jenkins jobs?

2014-02-21 Thread Mark Waite
I called the command line to extract the job definition, then stored that definition in source control. I could replay it at any time. That did not update job definitions when they changed. It did not detect changes (other than through the version control system diff mechanism). It was not atte

Re: Double checkstyle/pmd/findbugs warnings in a jenkins maven multimodule job

2014-02-21 Thread Ullrich Hafner
Can please create a new bug report and describe in more detail where the wrong number of warnings are shown (which link did you select?). Maybe an example project that exposes the bug would also help. Am Freitag, 21. Februar 2014 schrieb pa7751 : > I am using Jenkins only to aggregate. the proble

best approach to automate/manage jenkins jobs?

2014-02-21 Thread phil swenson
Hi, we have a large number of jenkins jobs and would like to automate and version control their configuration. >From what I can tell, most people just manually config their jobs via the UI. Unless there are only a few very simple jobs, this leads to an unmanageable mess. I think the jobs should

cvs checkout fails when running jenkins under Tomcat

2014-02-21 Thread johnmarks
I get the following output Started by user anonymous Building in workspace cvs update -d -P -r GMAS_1_37 GMAS_1_37 cvs update: Updating GMAS_1_37 cvs update: failed to create lock directory for `/u02/app/cvs/projects/GMAS

Re: Double checkstyle/pmd/findbugs warnings in a jenkins maven multimodule job

2014-02-21 Thread pa7751
I am using Jenkins only to aggregate. the problem is that in the scenario I highlighted, Jenkins aggregate plugin is showing double the actual number of warnings. On Fri, Feb 21, 2014 at 2:06 AM, Ullrich Hafner wrote: > You do not need to aggregate in Maven, the Jenkins plugin does that for > you