Re: build flow, early exit from parallel construct?

2013-10-29 Thread Åsmund Østvold
On Tue, Oct 29, 2013 at 4:16 AM, James Nord (jnord) jn...@cisco.com wrote:

  The changes I have put in to support this are not in a release version
 of the buildflow – so you will need to download source and compile, or grab
 it from the Jenkins ci instance.


I forgot to state that I am did this. Sorry about that.  I am running:

   * 305af7f Merge pull request #37 from mattiasbpersson/master
   * build-flow-plugin:0.11-SNAPSHOT

I did very much like the groovy shell evaluation!

Asmund








 ** **

 /James

 ** **

 *From:* jenkinsci-users@googlegroups.com [mailto:
 jenkinsci-users@googlegroups.com] *On Behalf Of *Åsmund Østvold
 *Sent:* 28 October 2013 17:34

 *To:* jenkinsci-users@googlegroups.com
 *Subject:* Re: build flow, early exit from parallel construct?

  ** **

 Thank you James,  

 ** **

 I finally freed up some time and was able do a new stab at this.  I have
 inlined some questions and feedback.

 ** **

 On Fri, Oct 25, 2013 at 6:33 AM, James Nord (jnord) jn...@cisco.com
 wrote:

  KillRunningjobs is called internally if the flow is aborted (or one of
 the jobs is aborted).

 Internallyt this is handled by catching either  (IIRC) a
 JobAborteException (or also an IOException).

  ** **

 I did search for 10 minutes for JobAborteException or something close to
 this. But my Jenkins/Java knowledge is limite...

  

  The IOException will show a stack trace in your console output – wheres
 the jobAbortEx will just show “Aborted” (and the cause if you set one),***
 *

  ** **

 I did try the blow but was not able to abort flow job. Job 'pass' takes
 20s and job 'fail' taks only 5s:

 ** **

 parallel(

  {  b = build(pass);

 if (b.getResult() == Result.FAILURE) {

 throw new java.io.IOException(foo)

 } },

  {  b = build( fail );

 if (b.getResult() == Result.FAILURE) {

 throw new java.io.IOException(foo)

 }}

 )

 ** **

 Console output:

 ** **

 ** **

 parallel {

 Schedule job fail http://ao:8080/job/fail/

 Schedule job pass http://ao:8080/job/pass/

 Build fail #40 http://ao:8080/job/fail/40/ started

 Build pass #33 http://ao:8080/job/pass/33/ started

 fail #40 http://ao:8080/job/fail/40/ completed  : FAILURE

 pass #33 http://ao:8080/job/pass/33/ completed 

 }

  ** **

   I am probably doing something wrong but I am not able to see it. Any
 help would be appreciated. 

  

  So just throw one of those.  I guess I should add this to the extensions
 so you can just call ext.abortFlow(“Reason”) J

  ** **

 With my limited understanding I believe this would be very good to have.
 If you add this could you consider adding something like:

 ** **

   ext.failFlow(“Reason”)

 ** **

 It should do the same was for abortFlow(foo) but fail the build. For my
 use case this would keep the overall status as if all the jobs in the
 parallel section had finished. To also cover 'UNSTABLE' and 'SUCCESS' could
 the generalisation be exposing something like:

 ** **

terminateFlow(Result r, String s)

 ** **

 ?

  

  Also no need to check the string – check getResult() == Result.FAILURE
 or getResult().isWorseOrEqual(Result.FAILURE)

  ** **

 Thanks for this. 

  

 Asmund

 ** **

 -- 

 dyslectic

 --
 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 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 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: Jenkins proxy with Nginx

2013-10-29 Thread Philipp Kraus


Am Montag, 28. Oktober 2013 19:08:34 UTC+1 schrieb Richard Bywater:

 Have you seen 
 https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+behind+an+NGinX+reverse+proxy?

 Not sure if it helps but could be a starting point to see what someone 
 else has done.



I have create a half working solution. The Nginx configuration is:

server {
list 443;
ssl_session_timeout  5m; // this option must be set, without a bad 
gateway error is occured

location /jenkins {
try_files $uri $uri/index.html $uri.html @jenkins;
}

location @jenkins {
proxy_read_timeout  300;.
proxy_connect_timeout   300;.
proxy_redirect  off;
proxy_set_headerHost $http_host;
proxy_set_headerX-Real-IP $remote_addr;
proxy_set_headerX-Forwarded-Proto https;
proxy_set_headerX-Forwarded-For $proxy_add_x_forwarded_for;
proxy_redirect  http:// https://; // this option must be 
also set, because it is equal to Apaches ProxyReverse option
add_header  Pragma no-cache;

proxy_pass  http://localhost:8080;
}
}

t the moment I have got a problem with the Jenkins forms, I can open the 
Jenkins pages, but on send form data the URL is incorrect, the HTML action 
value is set eg to config, but it must be a https:// prefix.
I have bind Jenkins with the httpPort parameter to the port 8080, but I 
would like to switch it to https (disable http). How can I tell Jenkins 
that it creates the correct links in its HTML code?
I have set the Jenkins URL field in the settings to https://myserver/jenkins
And I would like to communicate between Nginx  Jenkins via https (or pass 
Jenkins SSL to Nginx), which options must be set in Jenkins?

Thanks

Phil

-- 
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: Unable to upgrade from 1.534 to 1.535 (and 1.536)

2013-10-29 Thread Federico Fissore
I've also tried with 1.537 and still same output. I've tried deleting my 
custom jenkins home folder war subfolder, but nothing moves that log
I'm stuck with 1.534

Il giorno lunedì 28 ottobre 2013 12:17:27 UTC+1, Federico Fissore ha 
scritto:

 Yes and it still doesn't start

 Il giorno venerdì 25 ottobre 2013 15:44:54 UTC+2, Stephen Connolly ha 
 scritto:

 have you tried wiping out $JENKINS_HOME/war as that may not be fully 
 clean (it's where the .jar extracts all of the .war contents to?



-- 
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: Null pointer exception in ExtendedEmailPublisher after updated jenkins it's plugin and build script- Jenkins ver. 1.536 - Email Extension Plugin ver. 2.35.1

2013-10-29 Thread Ahmed Mubbashir Khan
Version 2.36 seems to have fixed it.
https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin

Regards,
--
Ahmed Mubbashir Khan
I don't make Software, I make it better
http://about.me/mubbashir


On Wed, Oct 23, 2013 at 5:18 PM, Ulli Hafner ullrich.haf...@gmail.comwrote:

 I'm not sure if this is related but it seems that 1.536 changed the JSON
 binding (Jenkins core) which also breaks my plug-ins:
 https://issues.jenkins-ci.org/browse/JENKINS-20199

 Ulli

 Am 22.10.2013 um 16:41 schrieb Slide slide.o@gmail.com:

 Seems like something from the form is not making it through to the post
 with the values for the DataBoundConstructor of the triggers.

 project_triggers:[{stapler-class:,kind:},{stapler-class:
 ,kind:},{stapler-class:,kind:},{stapler-class
 :,kind:},{stapler-class:,kind:}]

 I'm not familiar enough with stapler to know why that could happen.


 On Tue, Oct 22, 2013 at 5:59 AM, mubbashir mubbashi...@gmail.com wrote:

 Hi guys,

 Today I had updated jenkins and it's plugin, after the update I am
 getting some weird exception as soon as jenkins is done with scm This will
 only happen if the build script of a job is updated.

 After updating the build script I wasn't able to save the job (see below
 the exception 1 )
 - I open the advance option of the editable email and there were couple
 of empty values in the triggers advance option
 - I deleted all the triggers, added new triggers
  - I was able to save the the job
 - On  executing the build I got null pointer exception  (see below the
 exception 2 , couldn't find the complete stack trace)

 I removed the editable email notifications from post build actions run
 the build it worked fine.

 I got the same null pointer exception on adding the editable email
 notification again.

 Any thoughts?

 _


 *Exception 1* (unable to save the job):

 Oops!

 A problem occurred while processing the request. Please check our bug
 tracker to see if a similar problem has already been reported. If it is
 already reported, please vote and put a comment on it to let us gauge the
 impact of the problem. If you think this is a new issue, please file a new
 issue. When you file an issue, make sure to add the entire stack trace,
 along with the version of Jenkins and relevant plugins. The users list
 might be also useful in understanding what has happened.

 Stack trace

 javax.servlet.ServletException: java.lang.RuntimeException: Failed to
 instantiate class hudson.plugins.emailext.ExtendedEmailPublisher from
 {project_recipient_list:$DEFAULT_RECIPIENTS,project_replyto:$DEFAULT_RECIPIENTS,project_content_type:default,project_default_subject:$DEFAULT_SUBJECT,project_default_content:$DEFAULT_CONTENT,project_attachments:,project_attach_buildlog:0,project_presend_script:,project_save_output:false,project_triggers:[{stapler-class:,kind:},{stapler-class:,kind:},{stapler-class:,kind:},{stapler-class:,kind:},{stapler-class:,kind:}],stapler-class:hudson.plugins.emailext.ExtendedEmailPublisher,kind:hudson.plugins.emailext.ExtendedEmailPublisher}
 at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:777)
 at org.kohsuke.stapler.Stapler.invoke(Stapler.java:841)
 at org.kohsuke.stapler.MetaClass$6.doDispatch(MetaClass.java:248)
 at
 org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
 at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:727)
 at org.kohsuke.stapler.Stapler.invoke(Stapler.java:841)
 at org.kohsuke.stapler.Stapler.invoke(Stapler.java:630)
 at org.kohsuke.stapler.Stapler.service(Stapler.java:224)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:728)
 at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)
 at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
 at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:96)
 at
 hudson.plugins.greenballs.GreenBallFilter.doFilter(GreenBallFilter.java:58)
 at hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:99)
 at hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:88)
 at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
 at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
 at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:48)
 at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
 at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
 at
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:84)
 at
 hudson.security.UnwrapSecurityExceptionFilter.doFilter(UnwrapSecurityExceptionFilter.java:51)
 at
 hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
 at
 jenkins.security.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:117)
 at
 

Re: Does uninstall a plugin causes job config file to lose its plugin changes ?

2013-10-29 Thread Stephen Connolly
Jenkins will only loose the job configuration if there is a save of the job
triggered. In most cases there will not be a save auto triggered, i.e.
you would need to go to the Job's configure screen and hit save or
apply but there are some plugins that trigger save actions by themselves
(e.g. if they need to update job level state as a result of a build or such)


On 26 October 2013 05:32, zw mpc8...@gmail.com wrote:

 Hi All

 We are trying to troubleshoot why our job config page is not loading.
 If we uninstall each plugin as we troubleshoot, would Hudson or Jenkins
 modify the job config files that had previously used those installed plugins
 and remove those plugins tags just because we uninstalled them temporarily
 ?
 We ask because we like to know if we need to make job config backups as we
 do not want to lose the old installed plugin tags used in our jobs.

 Thank you
 Sincerely

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


Hyperlink in Excel to build a Jenkins job

2013-10-29 Thread Glenn Halstead
Hi Folks,

I want to have a hyperlink in Excel that will build a Jenkins job.  I'm 
currently failing to achieve this because the url to build a job must be a 
POST but clicking the url in Excel performs a GET.  Can this be done?

thanks

Glenn

-- 
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: gerrit-trigger / git 2.0 woe

2013-10-29 Thread Nigel Magnay
So, doing some digging :

I can no longer use 'native' git, it blows up with the eventual cause:

Caused by: 
java.lang.NullPointerExceptionhttp://stacktrace.jenkins-ci.org/search?query=java.lang.NullPointerException

at
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:894)http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentialsentity=method

at
org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$400(CliGitAPIImpl.java:52)http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$400entity=method

at
org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:296)http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.executeentity=method

... 11 more

ERROR: null


Which looks like it can't find a RemoteAgentFactory to fire up the SSH.
Which is odd.

jgit also fails, but I suspect this might be down to the refspec, which
should be something like refs/changes/65/4465/2 (or $GERRIT_REFSPEC)

I've abandoned the gerrit choosing strategy, since it just seems to check
out HEAD (which seems a little odd, but that doesn't mean it's not right).




On Mon, Oct 28, 2013 at 1:51 PM, Mark Waite mark.earl.wa...@gmail.comwrote:

 In case it matters, my problem configuration is a Windows 8 machine.  The
 Windows Server 2011 machine that is also in that configuration does not
 show the problem, nor do any of the Debian Linux machines that are in the
 configuration.

 Mark Waite


 On Mon, Oct 28, 2013 at 7:49 AM, Mark Waite mark.earl.wa...@gmail.comwrote:

 I've seen a similar message in one of my git plugin 2.0 test
 configurations without using the Gerrit trigger.  One of my jgit trivial
 test jobs was passing happily (though executing more builds than it should
 due to https://issues.jenkins-ci.org/browse/JENKINS-20286), when it
 suddenly began reporting that a SHA1 was missing.

 That report only happens on one of the configurations in the
 multi-configuration job, and it only happens on the multi-configuration job
 which uses jgit and uses a custom SCM name.  The Jenkins instance has very
 few other plugins installed, and has never interacted with a Gerrit
 instance.

 I don't have time to investigate the conditions which cause the bug now,
 but hope within the next 24 hours to do some further investigation.

 Thanks,
 Mark Waite


 On Mon, Oct 28, 2013 at 7:36 AM, Nigel Magnay nigel.mag...@gmail.comwrote:

 I'm not sure -- it's not the SHA1 that should be built (it's not the ID
 of the SHA1 of the change set).

 It feels like jenkins is asking gerrit for a SHA that doesn't exist (or
 perhaps - does not exist any longer, as it's been GCed out of the gerrit
 repo).

 The git plugin also seems to be stamping a SHA1/id into the build
 (sometimes multiple times!) that has nothing to do with the values it
 should be using.

 https://issues.jenkins-ci.org/browse/JENKINS-20225 suggests I'm not the
 only one suffering. I may have to resort to checking out the source again
 :-//




 On Mon, Oct 28, 2013 at 1:07 PM, Mark Waite 
 mark.earl.wa...@gmail.comwrote:

 Does it succeed with the command line git provider, or is it failing
 with both command line and jgit?

 I thought missing commit usually meant that the git repository was
 corrupt and needed to be rebuilt.

 Which of the repositories contain that SHA1?  (Is it in the Gerrit repo
 and not in the Jenkins repo, or vice versa)?

 Mark Waite


  On Mon, Oct 28, 2013 at 7:01 AM, Nigel Magnay 
 nigel.mag...@gmail.comwrote:

  Has anyone got the above combination to work?

 Our jenkins seems obsessed with building wrong versions. I'm not sure
 which of the vague Usage with the Git plugin options (here
 https://wiki.jenkins-ci.org/display/JENKINS/Gerrit+Trigger) are
 valid, and our gerrit server is spitting errors such as:

 [2013-10-28 12:58:36,274] ERROR com.google.gerrit.sshd.BaseCommand :
 Internal server error (user jenkins account 101) during 
 git-upload-pack
 '/realtime'

 org.eclipse.jgit.transport.UploadPackInternalServerErrorException

 at
 org.eclipse.jgit.transport.UploadPack.sendPack(UploadPack.java:1041)

 at
 org.eclipse.jgit.transport.UploadPack.service(UploadPack.java:612)

 at
 org.eclipse.jgit.transport.UploadPack.upload(UploadPack.java:521)

 at
 com.google.gerrit.sshd.commands.Upload.runImpl(Upload.java:57)

 at
 com.google.gerrit.sshd.AbstractGitCommand.service(AbstractGitCommand.java:101)

 at
 com.google.gerrit.sshd.AbstractGitCommand.access$000(AbstractGitCommand.java:32)

 at
 com.google.gerrit.sshd.AbstractGitCommand$1.run(AbstractGitCommand.java:70)

 at
 com.google.gerrit.sshd.BaseCommand$TaskThunk.run(BaseCommand.java:429)

 at
 java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)

 at
 

Re: gerrit-trigger / git 2.0 woe

2013-10-29 Thread nicolas de loof
This is fixed in HEAD, try using a SNAPSHOT build for git-client


2013/10/29 Nigel Magnay nigel.mag...@gmail.com

 So, doing some digging :

 I can no longer use 'native' git, it blows up with the eventual cause:

 Caused by: 
 java.lang.NullPointerExceptionhttp://stacktrace.jenkins-ci.org/search?query=java.lang.NullPointerException

 at
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:894)http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentialsentity=method

 at
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$400(CliGitAPIImpl.java:52)http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$400entity=method

 at
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:296)http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.executeentity=method

 ... 11 more

 ERROR: null


 Which looks like it can't find a RemoteAgentFactory to fire up the SSH.
 Which is odd.

 jgit also fails, but I suspect this might be down to the refspec, which
 should be something like refs/changes/65/4465/2 (or $GERRIT_REFSPEC)

 I've abandoned the gerrit choosing strategy, since it just seems to check
 out HEAD (which seems a little odd, but that doesn't mean it's not right).




 On Mon, Oct 28, 2013 at 1:51 PM, Mark Waite mark.earl.wa...@gmail.comwrote:

 In case it matters, my problem configuration is a Windows 8 machine.  The
 Windows Server 2011 machine that is also in that configuration does not
 show the problem, nor do any of the Debian Linux machines that are in the
 configuration.

 Mark Waite


 On Mon, Oct 28, 2013 at 7:49 AM, Mark Waite mark.earl.wa...@gmail.comwrote:

 I've seen a similar message in one of my git plugin 2.0 test
 configurations without using the Gerrit trigger.  One of my jgit trivial
 test jobs was passing happily (though executing more builds than it should
 due to https://issues.jenkins-ci.org/browse/JENKINS-20286), when it
 suddenly began reporting that a SHA1 was missing.

 That report only happens on one of the configurations in the
 multi-configuration job, and it only happens on the multi-configuration job
 which uses jgit and uses a custom SCM name.  The Jenkins instance has very
 few other plugins installed, and has never interacted with a Gerrit
 instance.

 I don't have time to investigate the conditions which cause the bug now,
 but hope within the next 24 hours to do some further investigation.

 Thanks,
 Mark Waite


 On Mon, Oct 28, 2013 at 7:36 AM, Nigel Magnay nigel.mag...@gmail.comwrote:

 I'm not sure -- it's not the SHA1 that should be built (it's not the ID
 of the SHA1 of the change set).

 It feels like jenkins is asking gerrit for a SHA that doesn't exist (or
 perhaps - does not exist any longer, as it's been GCed out of the gerrit
 repo).

 The git plugin also seems to be stamping a SHA1/id into the build
 (sometimes multiple times!) that has nothing to do with the values it
 should be using.

 https://issues.jenkins-ci.org/browse/JENKINS-20225 suggests I'm not
 the only one suffering. I may have to resort to checking out the source
 again :-//




 On Mon, Oct 28, 2013 at 1:07 PM, Mark Waite 
 mark.earl.wa...@gmail.comwrote:

 Does it succeed with the command line git provider, or is it failing
 with both command line and jgit?

 I thought missing commit usually meant that the git repository was
 corrupt and needed to be rebuilt.

 Which of the repositories contain that SHA1?  (Is it in the Gerrit
 repo and not in the Jenkins repo, or vice versa)?

 Mark Waite


  On Mon, Oct 28, 2013 at 7:01 AM, Nigel Magnay nigel.mag...@gmail.com
  wrote:

  Has anyone got the above combination to work?

 Our jenkins seems obsessed with building wrong versions. I'm not sure
 which of the vague Usage with the Git plugin options (here
 https://wiki.jenkins-ci.org/display/JENKINS/Gerrit+Trigger) are
 valid, and our gerrit server is spitting errors such as:

 [2013-10-28 12:58:36,274] ERROR com.google.gerrit.sshd.BaseCommand :
 Internal server error (user jenkins account 101) during 
 git-upload-pack
 '/realtime'

 org.eclipse.jgit.transport.UploadPackInternalServerErrorException

 at
 org.eclipse.jgit.transport.UploadPack.sendPack(UploadPack.java:1041)

 at
 org.eclipse.jgit.transport.UploadPack.service(UploadPack.java:612)

 at
 org.eclipse.jgit.transport.UploadPack.upload(UploadPack.java:521)

 at
 com.google.gerrit.sshd.commands.Upload.runImpl(Upload.java:57)

 at
 com.google.gerrit.sshd.AbstractGitCommand.service(AbstractGitCommand.java:101)

 at
 com.google.gerrit.sshd.AbstractGitCommand.access$000(AbstractGitCommand.java:32)

 at
 com.google.gerrit.sshd.AbstractGitCommand$1.run(AbstractGitCommand.java:70)

 at
 com.google.gerrit.sshd.BaseCommand$TaskThunk.run(BaseCommand.java:429)

 at
 

Is jenkins bug module artifacts were not being deleted by the log rotator (issue 17508) still there in 1.509.4

2013-10-29 Thread Buddika Sanjeewa
Hi All,

When we upgraded to jenkins stable release 1.509.1 , it introduced the 
bug Maven module artifacts were not being deleted by the log rotator  (issue 
17508) https://issues.jenkins-ci.org/browse/JENKINS-17508 and finally we 
found that it was fixed in 1.515 release. 
Now we are planning to upgrade jenkins to 1.509.4 but we cannot find in 
http://jenkins-ci.org/changelog-stable whether that bug is fixed. if that 
is still there we are not going for the upgrade.

Please help us to clarify this.
 
Thanks and Regards
Sanjeewa

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


running nodes in artificial date/time/timezone conditions

2013-10-29 Thread Chris Withers

Hi All,

We have had some problems recently resulting from DST changes in Europe. 
Unfortunately, they were at the intersection of our database, realtime 
system and batch processing.


The only way to reliably test these boundary conditions are to put the 
whole test machine (SUSE linux box) into a particular timezone.


How will this interact with the Jenkins slave running on that machine? 
Will everything work or will there be problems?


What strategies have others used to do this kind of testing?

cheers,

Chris

--
Simplistix - Content Management, Batch Processing  Python Consulting
- http://www.simplistix.co.uk

--
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: gerrit-trigger / git 2.0 woe

2013-10-29 Thread Nigel Magnay
Thanks, that fixes the security failure.

It still seems gerrit functionality is broken.

I trigger a build event (Query and Trigger Gerrit Patches).

The build starts, and before the data has even arrived, it's stamped 'Git
Build Data' with a totally incorrect SHA1 for the build.

The gerrit variables are all correct, particularly
$GERRIT_PATCHSET_REVISION = correct SHA1
$GERRIT_REFSPEC = refs/changes/65/4465/2

I'd have thought setting
Name : origin
Refspec : $GERRIT_REFSPEC
Branches to build: $GERRIT_PATCHSET_REVISION
Choosing strategy : default

would do the trick, but it seems to obsessively re-build a random
(seemingly the first alphabetical) branch.


On Tue, Oct 29, 2013 at 10:39 AM, nicolas de loof
nicolas.del...@gmail.comwrote:

 This is fixed in HEAD, try using a SNAPSHOT build for git-client


 2013/10/29 Nigel Magnay nigel.mag...@gmail.com

 So, doing some digging :

 I can no longer use 'native' git, it blows up with the eventual cause:

 Caused by: 
 java.lang.NullPointerExceptionhttp://stacktrace.jenkins-ci.org/search?query=java.lang.NullPointerException

 at
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:894)http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentialsentity=method

 at
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$400(CliGitAPIImpl.java:52)http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$400entity=method

 at
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:296)http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.executeentity=method

 ... 11 more

 ERROR: null


 Which looks like it can't find a RemoteAgentFactory to fire up the SSH.
 Which is odd.

 jgit also fails, but I suspect this might be down to the refspec, which
 should be something like refs/changes/65/4465/2 (or $GERRIT_REFSPEC)

 I've abandoned the gerrit choosing strategy, since it just seems to check
 out HEAD (which seems a little odd, but that doesn't mean it's not right).




 On Mon, Oct 28, 2013 at 1:51 PM, Mark Waite mark.earl.wa...@gmail.comwrote:

 In case it matters, my problem configuration is a Windows 8 machine.
  The Windows Server 2011 machine that is also in that configuration does
 not show the problem, nor do any of the Debian Linux machines that are in
 the configuration.

 Mark Waite


 On Mon, Oct 28, 2013 at 7:49 AM, Mark Waite 
 mark.earl.wa...@gmail.comwrote:

 I've seen a similar message in one of my git plugin 2.0 test
 configurations without using the Gerrit trigger.  One of my jgit trivial
 test jobs was passing happily (though executing more builds than it should
 due to https://issues.jenkins-ci.org/browse/JENKINS-20286), when it
 suddenly began reporting that a SHA1 was missing.

 That report only happens on one of the configurations in the
 multi-configuration job, and it only happens on the multi-configuration job
 which uses jgit and uses a custom SCM name.  The Jenkins instance has very
 few other plugins installed, and has never interacted with a Gerrit
 instance.

 I don't have time to investigate the conditions which cause the bug
 now, but hope within the next 24 hours to do some further investigation.

 Thanks,
 Mark Waite


 On Mon, Oct 28, 2013 at 7:36 AM, Nigel Magnay 
 nigel.mag...@gmail.comwrote:

 I'm not sure -- it's not the SHA1 that should be built (it's not the
 ID of the SHA1 of the change set).

 It feels like jenkins is asking gerrit for a SHA that doesn't exist
 (or perhaps - does not exist any longer, as it's been GCed out of the
 gerrit repo).

 The git plugin also seems to be stamping a SHA1/id into the build
 (sometimes multiple times!) that has nothing to do with the values it
 should be using.

 https://issues.jenkins-ci.org/browse/JENKINS-20225 suggests I'm not
 the only one suffering. I may have to resort to checking out the source
 again :-//




 On Mon, Oct 28, 2013 at 1:07 PM, Mark Waite mark.earl.wa...@gmail.com
  wrote:

 Does it succeed with the command line git provider, or is it failing
 with both command line and jgit?

 I thought missing commit usually meant that the git repository was
 corrupt and needed to be rebuilt.

 Which of the repositories contain that SHA1?  (Is it in the Gerrit
 repo and not in the Jenkins repo, or vice versa)?

 Mark Waite


  On Mon, Oct 28, 2013 at 7:01 AM, Nigel Magnay 
 nigel.mag...@gmail.com wrote:

  Has anyone got the above combination to work?

 Our jenkins seems obsessed with building wrong versions. I'm not
 sure which of the vague Usage with the Git plugin options (here
 https://wiki.jenkins-ci.org/display/JENKINS/Gerrit+Trigger) are
 valid, and our gerrit server is spitting errors such as:

 [2013-10-28 12:58:36,274] ERROR com.google.gerrit.sshd.BaseCommand :
 Internal server error (user jenkins account 101) during 
 git-upload-pack
 '/realtime'

 

Re: high memory consumption after upgrading to jenkins 1.537

2013-10-29 Thread David Gang
Hi,

I found a possible cause.
I had a job with 5 builds which i did not discard.
After setting the limit that   it should not save more than x builds, the 
memory consumption went down and jenkins is now responsive.

Thanks to all,
David

On Monday, October 28, 2013 6:02:50 PM UTC+2, David Gang wrote:

 Hi all,

 I have with jenkins 1.537 a much higher memory consumption than with 
 jenkins 1.535.
 I also noticed that the PS Old gen is full.
 I had to raise the xmx from 2G to 3G in order that jenkins should be 
 responsive.

 Did anyone also notice this issue?

 Thanks,
 David


-- 
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: dead executor thread on LTS

2013-10-29 Thread Greg Moncreaff
from the console of the cmd running jenkins:

WARNING: Caught exception evaluating: job.lastSuccessfulBuild in /. Reason: 
java.lang.reflect.InvocationTargetException
java.lang.reflect.InvocationTargetException
at sun.reflect.GeneratedMethodAccessor54.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at 
org.apache.commons.jexl.util.PropertyExecutor.execute(PropertyExecutor.java:125)
at 
org.apache.commons.jexl.util.introspection.UberspectImpl$VelGetterImpl.invoke(UberspectImpl.java:314)
at 
org.apache.commons.jexl.parser.ASTArrayAccess.evaluateExpr(ASTArrayAccess.java:185)
at 
org.apache.commons.jexl.parser.ASTIdentifier.execute(ASTIdentifier.java:75)
at 
org.apache.commons.jexl.parser.ASTReference.execute(ASTReference.java:83)
at 
org.apache.commons.jexl.parser.ASTReference.value(ASTReference.java:57)
at 
org.apache.commons.jexl.parser.ASTReferenceExpression.value(ASTReferenceExpression.java:51)
at 
org.apache.commons.jexl.ExpressionImpl.evaluate(ExpressionImpl.java:80)
at 
hudson.ExpressionFactory2$JexlExpression.evaluate(ExpressionFactory2.java:74)
at 
org.apache.commons.jelly.tags.core.CoreTagLibrary$3.run(CoreTagLibrary.java:134)
at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
at 
org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105)
at 
org.kohsuke.stapler.jelly.JellyViewScript.run(JellyViewScript.java:81)
at org.kohsuke.stapler.jelly.IncludeTag.doTag(IncludeTag.java:146)
at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:269)
at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:161)
at 
org.apache.commons.jelly.tags.core.ForEachTag.doTag(ForEachTag.java:150)
at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:269)
at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
at 
org.kohsuke.stapler.jelly.ReallyStaticTagLibrary$1.run(ReallyStaticTagLibrary.java:99)
at 
org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105)
at 
org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:119)
at 
org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:161)
at 
org.apache.commons.jelly.tags.core.ForEachTag.doTag(ForEachTag.java:150)
at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:269)
at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
at 
org.kohsuke.stapler.jelly.ReallyStaticTagLibrary$1.run(ReallyStaticTagLibrary.java:99)
at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
at 
org.apache.commons.jelly.tags.core.CoreTagLibrary$1.run(CoreTagLibrary.java:98)
at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
at 
org.kohsuke.stapler.jelly.ReallyStaticTagLibrary$1.run(ReallyStaticTagLibrary.java:99)
at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
at 
org.apache.commons.jelly.tags.core.CoreTagLibrary$2.run(CoreTagLibrary.java:105)
at 
org.kohsuke.stapler.jelly.CallTagLibScript.run(CallTagLibScript.java:119)
at 
org.kohsuke.stapler.jelly.groovy.JellyBuilder.doInvokeMethod(JellyBuilder.java:276)
at 
org.kohsuke.stapler.jelly.groovy.Namespace$ProxyImpl.invoke(Namespace.java:92)
at $Proxy35.projectView(Unknown Source)
at lib.JenkinsTagLib$projectView.call(Unknown Source)
at 
org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:42)
at 
org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:108)
at 
org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:120)
at hudson.model.View.main.run(main.groovy:14)
at 
org.kohsuke.stapler.jelly.groovy.GroovierJellyScript.run(GroovierJellyScript.java:69)
at 
org.kohsuke.stapler.jelly.groovy.GroovierJellyScript.run(GroovierJellyScript.java:62)
at org.kohsuke.stapler.jelly.IncludeTag.doTag(IncludeTag.java:146)
at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:269)
at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
at 
org.kohsuke.stapler.jelly.CallTagLibScript$1.run(CallTagLibScript.java:98)
at 
org.apache.commons.jelly.tags.define.InvokeBodyTag.doTag(InvokeBodyTag.java:91)
at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:269)
at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
at 
org.apache.commons.jelly.tags.core.CoreTagLibrary$1.run(CoreTagLibrary.java:98)
at 
org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
at 

Re: gerrit-trigger / git 2.0 woe

2013-10-29 Thread nicolas de loof
maybe you need
https://github.com/jenkinsci/gerrit-trigger-plugin/commit/41c445e9c1801c3cf091cefe622f63dd47252b2e
(not in a released version yet)


2013/10/29 Nigel Magnay nigel.mag...@gmail.com

 Thanks, that fixes the security failure.

 It still seems gerrit functionality is broken.

 I trigger a build event (Query and Trigger Gerrit Patches).

 The build starts, and before the data has even arrived, it's stamped 'Git
 Build Data' with a totally incorrect SHA1 for the build.

 The gerrit variables are all correct, particularly
 $GERRIT_PATCHSET_REVISION = correct SHA1
 $GERRIT_REFSPEC = refs/changes/65/4465/2

 I'd have thought setting
 Name : origin
 Refspec : $GERRIT_REFSPEC
 Branches to build: $GERRIT_PATCHSET_REVISION
 Choosing strategy : default

 would do the trick, but it seems to obsessively re-build a random
 (seemingly the first alphabetical) branch.


 On Tue, Oct 29, 2013 at 10:39 AM, nicolas de loof 
 nicolas.del...@gmail.com wrote:

 This is fixed in HEAD, try using a SNAPSHOT build for git-client


 2013/10/29 Nigel Magnay nigel.mag...@gmail.com

 So, doing some digging :

 I can no longer use 'native' git, it blows up with the eventual cause:

 Caused by: 
 java.lang.NullPointerExceptionhttp://stacktrace.jenkins-ci.org/search?query=java.lang.NullPointerException

 at
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:894)http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentialsentity=method

 at
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$400(CliGitAPIImpl.java:52)http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$400entity=method

 at
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:296)http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.executeentity=method

 ... 11 more

 ERROR: null


 Which looks like it can't find a RemoteAgentFactory to fire up the SSH.
 Which is odd.

 jgit also fails, but I suspect this might be down to the refspec, which
 should be something like refs/changes/65/4465/2 (or $GERRIT_REFSPEC)

 I've abandoned the gerrit choosing strategy, since it just seems to
 check out HEAD (which seems a little odd, but that doesn't mean it's not
 right).




 On Mon, Oct 28, 2013 at 1:51 PM, Mark Waite 
 mark.earl.wa...@gmail.comwrote:

 In case it matters, my problem configuration is a Windows 8 machine.
  The Windows Server 2011 machine that is also in that configuration does
 not show the problem, nor do any of the Debian Linux machines that are in
 the configuration.

 Mark Waite


 On Mon, Oct 28, 2013 at 7:49 AM, Mark Waite 
 mark.earl.wa...@gmail.comwrote:

 I've seen a similar message in one of my git plugin 2.0 test
 configurations without using the Gerrit trigger.  One of my jgit trivial
 test jobs was passing happily (though executing more builds than it should
 due to https://issues.jenkins-ci.org/browse/JENKINS-20286), when it
 suddenly began reporting that a SHA1 was missing.

 That report only happens on one of the configurations in the
 multi-configuration job, and it only happens on the multi-configuration 
 job
 which uses jgit and uses a custom SCM name.  The Jenkins instance has very
 few other plugins installed, and has never interacted with a Gerrit
 instance.

 I don't have time to investigate the conditions which cause the bug
 now, but hope within the next 24 hours to do some further investigation.

 Thanks,
 Mark Waite


 On Mon, Oct 28, 2013 at 7:36 AM, Nigel Magnay 
 nigel.mag...@gmail.comwrote:

 I'm not sure -- it's not the SHA1 that should be built (it's not the
 ID of the SHA1 of the change set).

 It feels like jenkins is asking gerrit for a SHA that doesn't exist
 (or perhaps - does not exist any longer, as it's been GCed out of the
 gerrit repo).

 The git plugin also seems to be stamping a SHA1/id into the build
 (sometimes multiple times!) that has nothing to do with the values it
 should be using.

 https://issues.jenkins-ci.org/browse/JENKINS-20225 suggests I'm not
 the only one suffering. I may have to resort to checking out the source
 again :-//




 On Mon, Oct 28, 2013 at 1:07 PM, Mark Waite 
 mark.earl.wa...@gmail.com wrote:

 Does it succeed with the command line git provider, or is it failing
 with both command line and jgit?

 I thought missing commit usually meant that the git repository was
 corrupt and needed to be rebuilt.

 Which of the repositories contain that SHA1?  (Is it in the Gerrit
 repo and not in the Jenkins repo, or vice versa)?

 Mark Waite


  On Mon, Oct 28, 2013 at 7:01 AM, Nigel Magnay 
 nigel.mag...@gmail.com wrote:

  Has anyone got the above combination to work?

 Our jenkins seems obsessed with building wrong versions. I'm not
 sure which of the vague Usage with the Git plugin options (here
 https://wiki.jenkins-ci.org/display/JENKINS/Gerrit+Trigger) are
 valid, and our 

Can Jenkins show changes to the database or dependencies, not just code?

2013-10-29 Thread random
Jenkins is great at making it obvious when a code change causes a test 
failure.
It's less great when other things cause a test failure, like database 
changes or dependency changes.

How can we have changes to these artifacts appear in the 'Recent changes' 
list?
By artifacts I mean things like:

   - The SQL file we use to create our blank database before each test run
   - The text file into which we pipe all the versions of installed 
   dependencies before each test run

I have heard about the Artifact Diff Plugin, but I suspect that would _not_ 
make artifacts as integrated as code changes are, so we would still have to 
click through manually every time to see if something changed. I'm looking 
for an automated/integrated solution so that Jenkins itself knows when an 
artifact has changed, and can make that obvious to users like it does for 
code changes.

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: Jenkins can't pull local Git repo - v1.536

2013-10-29 Thread Igor Lankin
Hi Julien,

we are experiencing exactly the same problem. Just came out of nowhere.

Have you been able to find out something?

Best regards

Igor


On Friday, October 25, 2013 11:54:17 AM UTC+2, Julien Tanay wrote:

 Hi, 

 Thanks for your answer, 

 I trid to set this setting but it did not change anything...


 2013/10/24 cchen chen...@gmail.com javascript:

 Check if you have git user.name set.

 http://git-scm.com/book/en/Customizing-Git-Git-Configuration


 On Thursday, October 24, 2013 9:36:24 AM UTC-7, Julien Tanay wrote:

 Hi, 

 Since this morning - and I absolutely don't know why! - Jenkins is not 
 able to pull from any of my local repository.

 Builds that worked yesterday don't today. The only error i got is this 
 Exception :

 FATAL: Username may not be null
 java.lang.**IllegalArgumentException: Username may not be null
 at org.apache.commons.httpclient.**UsernamePasswordCredentials.**init(
 **UsernamePasswordCredentials.**java:90)
  at org.jenkinsci.plugins.**gitclient.CliGitAPIImpl.**
 getURLWithCrendentials(**CliGitAPIImpl.java:1365)
 at org.jenkinsci.plugins.**gitclient.CliGitAPIImpl.fetch(**
 CliGitAPIImpl.java:155)
  at hudson.plugins.git.GitAPI.**fetch(GitAPI.java:229)
 at hudson.plugins.git.GitSCM.**fetchFrom(GitSCM.java:610)
  at hudson.plugins.git.GitSCM.**retrieveChanges(GitSCM.java:**836)
 at hudson.plugins.git.GitSCM.**checkout(GitSCM.java:861)
  at hudson.model.AbstractProject.**checkout(AbstractProject.java:**1411)
 at hudson.model.AbstractBuild$**AbstractBuildExecution.**
 defaultCheckout(AbstractBuild.**java:652)
  at jenkins.scm.**SCMCheckoutStrategy.checkout(**
 SCMCheckoutStrategy.java:88)
 at hudson.model.AbstractBuild$**AbstractBuildExecution.run(**
 AbstractBuild.java:557)
  at hudson.model.Run.execute(Run.**java:1665)
 at hudson.model.FreeStyleBuild.**run(FreeStyleBuild.java:46)
  at hudson.model.**ResourceController.execute(**ResourceControl

 But I didn't change anything to my settings.
 I am using a Jenkins user.
 From the command line, I am able to pull my repositories (with the exact 
 same credentials).

 I'm lost here. Did you ever seen such an Exception ?

 Thanks for your help, 

  -- 
 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/Kw52lokhrTw/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to 
 jenkinsci-use...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/groups/opt_out.




 -- 
 *Julien Tanay* - @Djiit
 (mail) julien...@gmail.com javascript:
 (web) www.julientanay.com http://julientanay.com

  

-- 
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: Jenkins can't pull local Git repo - v1.536

2013-10-29 Thread Slide
I'm wondering if this is somehow related to
https://issues.jenkins-ci.org/browse/JENKINS-20262. Can you try rolling
back to 1.535?


On Tue, Oct 29, 2013 at 6:40 AM, Igor Lankin igor.lan...@googlemail.comwrote:

 Hi Julien,

 we are experiencing exactly the same problem. Just came out of nowhere.

 Have you been able to find out something?

 Best regards

 Igor


 On Friday, October 25, 2013 11:54:17 AM UTC+2, Julien Tanay wrote:

 Hi,

 Thanks for your answer,

 I trid to set this setting but it did not change anything...


 2013/10/24 cchen chen...@gmail.com

 Check if you have git user.name set.

 http://git-scm.com/book/en/**Customizing-Git-Git-**Configurationhttp://git-scm.com/book/en/Customizing-Git-Git-Configuration


 On Thursday, October 24, 2013 9:36:24 AM UTC-7, Julien Tanay wrote:

 Hi,

 Since this morning - and I absolutely don't know why! - Jenkins is not
 able to pull from any of my local repository.

 Builds that worked yesterday don't today. The only error i got is this
 Exception :

 FATAL: Username may not be null
 java.lang.**IllegalArgumentExcep**tion: Username may not be null
 at org.apache.commons.httpclient.UsernamePasswordCredentials.**i**
 nit(**UsernamePasswordCredentia**ls.**java:90)
  at org.jenkinsci.plugins.**gitclien**t.CliGitAPIImpl.**getURLWithCren*
 *dentials(**CliGitAPIImpl.java:**1365)
 at org.jenkinsci.plugins.**gitclien**t.CliGitAPIImpl.fetch(**CliGitAP**
 IImpl.java:155)
  at hudson.plugins.git.GitAPI.**fetc**h(GitAPI.java:229)
 at hudson.plugins.git.GitSCM.**fetc**hFrom(GitSCM.java:610)
  at hudson.plugins.git.GitSCM.**retr**ieveChanges(GitSCM.java:**836)
 at hudson.plugins.git.GitSCM.**chec**kout(GitSCM.java:861)
  at hudson.model.AbstractProject.**c**heckout(AbstractProject.java:**1*
 *411)
 at hudson.model.AbstractBuild$**Abs**tractBuildExecution.**defaultChe**
 ckout(AbstractBuild.**java:652)
  at jenkins.scm.**SCMCheckoutStrateg**y.checkout(**SCMCheckoutStrategy*
 *.java:88)
 at hudson.model.AbstractBuild$**Abs**tractBuildExecution.run(**Abstra**
 ctBuild.java:557)
  at hudson.model.Run.execute(Run.**j**ava:1665)
 at hudson.model.FreeStyleBuild.**ru**n(FreeStyleBuild.java:46)
  at hudson.model.**ResourceControlle**r.execute(**ResourceControl

 But I didn't change anything to my settings.
 I am using a Jenkins user.
 From the command line, I am able to pull my repositories (with the
 exact same credentials).

 I'm lost here. Did you ever seen such an Exception ?

 Thanks for your help,

  --
 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/**Kw52lokhrTw/unsubscribehttps://groups.google.com/d/topic/jenkinsci-users/Kw52lokhrTw/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to
 jenkinsci-use...@**googlegroups.com.

 For more options, visit 
 https://groups.google.com/**groups/opt_outhttps://groups.google.com/groups/opt_out
 .




 --
 *Julien Tanay* - @Djiit
 (mail) julien...@gmail.com
 (web) www.julientanay.com http://julientanay.com

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




-- 
Website: http://earl-of-code.com

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


Most---Urgently---Need ! SAP HCM ! in Chicago IL.***Direct---Client---Requirement***

2013-10-29 Thread Sai Kanth
Hello Friend’s,
Hope you’re doing well and good.

We have an urgent requirement below, if you have any consultant available
with you please revert back to me with your latest profile ASAP.

** **

*Job Title : SAP HCM*

*Location : Chicago IL*

*Duration : 6 to 12 month's*

** **

*Job Description:*

**· **10 years of experience as SAP HCM Consultant and should have
worked on minimum 2 end to end implementations of SAP-HR-Enterprise
compensation management (ECM).

**· **Strong knowledge and hands-on experience on customizations in
SAP-HCM module- ECM

**· **In depth understanding Budgeting, Compensation Planning
process, Long Term Incentives and Job Pricing.

**· **Hands on experience in configuring Compensation
Eligibilities, Guidelines, Compensation Approval workflows.

** **

** **

Thanks  Regards



Sai Kanth

Technical Recruiter



*TekisHub Consulting Services *

1000 N West Street, Suite 1200, Wilmington, DE, 19801

(D) 302 613 2500 Ext 204  (F) 617 830 0525

-- 
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: Most---Urgently---Need ! SAP HCM ! in Chicago IL.***Direct---Client---Requirement***

2013-10-29 Thread Ginga, Dick
This is not a help wanted group.

From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Sai Kanth
Sent: Tuesday, October 29, 2013 9:52 AM
To: sai kanth
Subject: Most---Urgently---Need ! SAP HCM ! in Chicago 
IL.***Direct---Client---Requirement***

Hello Friend's,
Hope you're doing well and good.

We have an urgent requirement below, if you have any consultant available with 
you please revert back to me with your latest profile ASAP.

Job Title : SAP HCM
Location : Chicago IL
Duration : 6 to 12 month's

Job Description:

* 10 years of experience as SAP HCM Consultant and should have worked 
on minimum 2 end to end implementations of SAP-HR-Enterprise compensation 
management (ECM).

* Strong knowledge and hands-on experience on customizations in SAP-HCM 
module- ECM

* In depth understanding Budgeting, Compensation Planning process, Long 
Term Incentives and Job Pricing.

* Hands on experience in configuring Compensation Eligibilities, 
Guidelines, Compensation Approval workflows.


Thanks  Regards

Sai Kanth
Technical Recruiter

TekisHub Consulting Services
1000 N West Street, Suite 1200, Wilmington, DE, 19801
(D) 302 613 2500 Ext 204  (F) 617 830 0525
--
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.commailto: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.


Re: Most---Urgently---Need ! SAP HCM ! in Chicago IL.***Direct---Client---Requirement***

2013-10-29 Thread Andrew Melo
This same company shows up every few months, spams the list, gets banned,
then signs up with a new mail. We'll have to wait for one of the admins to
reban this guy :/


On Tue, Oct 29, 2013 at 8:59 AM, Ginga, Dick dick.gi...@perkinelmer.comwrote:

  This is not a “help wanted” group. 

 ** **

 *From:* jenkinsci-users@googlegroups.com [mailto:
 jenkinsci-users@googlegroups.com] *On Behalf Of *Sai Kanth
 *Sent:* Tuesday, October 29, 2013 9:52 AM
 *To:* sai kanth
 *Subject:* Most---Urgently---Need ! SAP HCM ! in Chicago
 IL.***Direct---Client---Requirement***

 ** **

 Hello Friend’s,
 Hope you’re doing well and good.

 We have an urgent requirement below, if you have any consultant available
 with you please revert back to me with your latest profile ASAP.

  

 *Job Title : SAP HCM*

 *Location : Chicago IL*

 *Duration : 6 to 12 month's*

  

 *Job Description:*

 · 10 years of experience as SAP HCM Consultant and should have
 worked on minimum 2 end to end implementations of SAP-HR-Enterprise
 compensation management (ECM).

 · Strong knowledge and hands-on experience on customizations in
 SAP-HCM module- ECM

 · In depth understanding Budgeting, Compensation Planning
 process, Long Term Incentives and Job Pricing.

 · Hands on experience in configuring Compensation Eligibilities,
 Guidelines, Compensation Approval workflows.

  

  

 Thanks  Regards 

  

 Sai Kanth

 Technical Recruiter

  

 *TekisHub Consulting Services *

 1000 N West Street, Suite 1200, Wilmington, DE, 19801 

 (D) 302 613 2500 Ext 204  (F) 617 830 0525

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




-- 
--
Andrew Melo

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


Is there a Jenkins release RSS?

2013-10-29 Thread dennys
Is there a Jenkins release for normal release (1.537, 1.538, ...) or LTS?
I only find this RSS, but it includes all plugins
http://jenkins-ci.org/releases.rss




--
View this message in context: 
http://jenkins-ci.361315.n4.nabble.com/Is-there-a-Jenkins-release-RSS-tp4679556.html
Sent from the Jenkins users mailing list archive at Nabble.com.

-- 
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: Jenkins can't pull local Git repo - v1.536

2013-10-29 Thread Julien Tanay
Hi,

Thanks for your answer. I wasn't able to do anything about it.

I'll rollback Jenkins to 1.535 ASAP and I'll keep you in touch.

Julien

-- 
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: Jenkins can't pull local Git repo - v1.536

2013-10-29 Thread Julien Tanay
 -- Just an update :

Tried to upgrade to 1.357 : same issue. I'll try to rollback tomorrow.

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


Jenkins Git plugin or Jenkins Git Client plugin on Mac not working

2013-10-29 Thread schujk
First time working with a mac...I feel I'm missing something obvious.

-Installed Jenkins (1.509), applied latest Jenkins GIT plugin and Jenkins 
GIT client plugin
-Git configuration complete in Jenkins
-Our git repo is out at an http location, confirmed access to this url.
-New jenkins job, select git as scm, provide git URL which includes user 
and password
 recieve Status Code: 500
   Posts say to use the credential plugin, which is installed by default 
with one of the plugins above
   remove user/password from git repository url
- I setup username/password configuration thru manage jenkins  manage 
credentials. I setup a global credential for jenkins, which is the same 
user to 'clone/pull' code from git url.
- go back to build job, I'm unable to select credentials. I have the 
up/down arrows in the 'Git Repositories', 'Credential' section
  but nothing is available, nor am i able to type anything in.
- I've reloaded configuration from disk
- I also unloaded/loaded the jenkins 'service'.
Still unable to provide credentials via the jenkins interface.

I am able to successfully complete a git clone via the command line, but 
when I use the same commands via 'execute shell', jenkin build appears to 
hang and doesn't respond.

What am I missing? This may be related to 
JENKINS-20254https://issues.jenkins-ci.org/browse/JENKINS-20254, 
except this is being reported with https...I'm not sure if it's an end user 
error or a true issue.


-- 
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: Git 2.0 Plugin wont work with HTTP repos

2013-10-29 Thread nicolas de loof
Created https://issues.jenkins-ci.org/browse/JENKINS-20326 for this, and
committed a fix

release in progress


2013/10/29 Tom Arra tar...@gmail.com

 I have Jenkins running with a Atlassian Stash server all running behind my
 corporate firewall. Everything was fine but when I upgraded Jenkins this
 morning all of my Git jobs stopped working.  Here is the stack trace (with
 the repo URL removed)


 hudson.plugins.git.GitException 
 http://stacktrace.jenkins-ci.org/search?query=hudson.plugins.git.GitException:
  Could not clone G 
 http://XpressBot:Xpress512@172.18.5.252:7990/scm/xwps/xpressv2.gitIT_URL_GOES_HERE
   at 
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:298)
  
 http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.executeentity=method
   at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:828) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.git.GitSCM.retrieveChangesentity=method
   at hudson.plugins.git.GitSCM.checkout(GitSCM.java:861) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.git.GitSCM.checkoutentity=method
   at hudson.model.AbstractProject.checkout(AbstractProject.java:1411) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.model.AbstractProject.checkoutentity=method
   at 
 hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:652)
  
 http://stacktrace.jenkins-ci.org/search/?query=hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckoutentity=method
   at 
 jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:88) 
 http://stacktrace.jenkins-ci.org/search/?query=jenkins.scm.SCMCheckoutStrategy.checkoutentity=method
   at 
 hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:557) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.model.AbstractBuild$AbstractBuildExecution.runentity=method
   at hudson.model.Run.execute(Run.java:1665) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.model.Run.executeentity=method
   at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.model.FreeStyleBuild.runentity=method
   at hudson.model.ResourceController.execute(ResourceController.java:88) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.model.ResourceController.executeentity=method
   at hudson.model.Executor.run(Executor.java:230) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.model.Executor.runentity=method
 Caused by: java.lang.IllegalArgumentException 
 http://stacktrace.jenkins-ci.org/search?query=java.lang.IllegalArgumentException:
  Username may not be null
   at 
 org.apache.commons.httpclient.UsernamePasswordCredentials.init(UsernamePasswordCredentials.java:90)
  
 http://stacktrace.jenkins-ci.org/search/?query=org.apache.commons.httpclient.UsernamePasswordCredentials.%3Cinit%3Eentity=method
   at 
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl.getURLWithCrendentials(CliGitAPIImpl.java:1376)
  
 http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl.getURLWithCrendentialsentity=method
   at 
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl.getURLWithCrendentials(CliGitAPIImpl.java:1338)
  
 http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl.getURLWithCrendentialsentity=method
   at 
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$300(CliGitAPIImpl.java:52)
  
 http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$300entity=method
   at 
 org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:292)
  
 http://stacktrace.jenkins-ci.org/search/?query=org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.executeentity=method
   ... 10 more




 I tried putting my creds into the credentials plugin and use that but still 
 no luck.


 Stack trace


 javax.servlet.ServletException: java.lang.IllegalArgumentException: Username 
 may not be null
   at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:777)
   at org.kohsuke.stapler.Stapler.invoke(Stapler.java:841)
   at org.kohsuke.stapler.MetaClass$6.doDispatch(MetaClass.java:248)
   at 
 org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
   at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:727)
   at org.kohsuke.stapler.Stapler.invoke(Stapler.java:841)
   at org.kohsuke.stapler.MetaClass$6.doDispatch(MetaClass.java:248)
   at 
 org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53)
   at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:727)
   at org.kohsuke.stapler.Stapler.invoke(Stapler.java:841)
   at org.kohsuke.stapler.Stapler.invoke(Stapler.java:630)
   at org.kohsuke.stapler.Stapler.service(Stapler.java:224)
   at 

Re: Jenkins Git plugin or Jenkins Git Client plugin on Mac not working

2013-10-29 Thread nicolas de loof
What type of credentials did you created ? Did you set them for a domain ?

credentials in URL should still work anyway. Is there a stacktrace using
this URL-with-credentials as git scm url ?


2013/10/29 schujk sch...@gmail.com

 First time working with a mac...I feel I'm missing something obvious.

 -Installed Jenkins (1.509), applied latest Jenkins GIT plugin and Jenkins
 GIT client plugin
 -Git configuration complete in Jenkins
 -Our git repo is out at an http location, confirmed access to this url.
 -New jenkins job, select git as scm, provide git URL which includes user
 and password
  recieve Status Code: 500
Posts say to use the credential plugin, which is installed by default
 with one of the plugins above
remove user/password from git repository url
 - I setup username/password configuration thru manage jenkins  manage
 credentials. I setup a global credential for jenkins, which is the same
 user to 'clone/pull' code from git url.
 - go back to build job, I'm unable to select credentials. I have the
 up/down arrows in the 'Git Repositories', 'Credential' section
   but nothing is available, nor am i able to type anything in.
 - I've reloaded configuration from disk
 - I also unloaded/loaded the jenkins 'service'.
 Still unable to provide credentials via the jenkins interface.

 I am able to successfully complete a git clone via the command line, but
 when I use the same commands via 'execute shell', jenkin build appears to
 hang and doesn't respond.

 What am I missing? This may be related to 
 JENKINS-20254https://issues.jenkins-ci.org/browse/JENKINS-20254,
 except this is being reported with https...I'm not sure if it's an end user
 error or a true issue.


  --
 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 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: Jenkins Git plugin or Jenkins Git Client plugin on Mac not working

2013-10-29 Thread schujk
It was an end user issue...I needed to change permissions on my jenkins 
home dir, sudo chown -R jenkins /Users/Shared/Jenkins.

On Tuesday, October 29, 2013 1:07:56 PM UTC-5, Nicolas De loof wrote:

 What type of credentials did you created ? Did you set them for a domain ?

 credentials in URL should still work anyway. Is there a stacktrace using 
 this URL-with-credentials as git scm url ?


 2013/10/29 schujk sch...@gmail.com javascript:

 First time working with a mac...I feel I'm missing something obvious.

 -Installed Jenkins (1.509), applied latest Jenkins GIT plugin and Jenkins 
 GIT client plugin
 -Git configuration complete in Jenkins
 -Our git repo is out at an http location, confirmed access to this url.
 -New jenkins job, select git as scm, provide git URL which includes user 
 and password
  recieve Status Code: 500
Posts say to use the credential plugin, which is installed by default 
 with one of the plugins above
remove user/password from git repository url
 - I setup username/password configuration thru manage jenkins  manage 
 credentials. I setup a global credential for jenkins, which is the same 
 user to 'clone/pull' code from git url.
 - go back to build job, I'm unable to select credentials. I have the 
 up/down arrows in the 'Git Repositories', 'Credential' section
   but nothing is available, nor am i able to type anything in.
 - I've reloaded configuration from disk
 - I also unloaded/loaded the jenkins 'service'.
 Still unable to provide credentials via the jenkins interface.

 I am able to successfully complete a git clone via the command line, but 
 when I use the same commands via 'execute shell', jenkin build appears to 
 hang and doesn't respond.

 What am I missing? This may be related to 
 JENKINS-20254https://issues.jenkins-ci.org/browse/JENKINS-20254, 
 except this is being reported with https...I'm not sure if it's an end user 
 error or a true issue.


  -- 
 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-use...@googlegroups.com javascript:.
 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.


Re: jenkins upgrade from 1.496 to 1.537, slaves cannot launch

2013-10-29 Thread Zetan Drableg
I had to go through each node configuration.
 The management of credentials seems to have changed (for the better) but I 
had to re-select creds for each node after upgrade.
169 slaves later. :(


On Monday, October 28, 2013 4:50:46 PM UTC-7, Zetan Drableg wrote:

 Hi, Just upgraded Jenkins to pickup some bug fixes (disappearing job log).
 Rekey process is running in the background. Is it not done yet and causing 
 this?

 Every single slave failed to launch with this error:

 [10/28/13 16:47:39] [SSH] Opening SSH connection to 
 batvm06.perf.lab.tripwire.com:22.
 ERROR: Unexpected error in launching a slave. This is probably a bug in 
 Jenkins.java.lang.NullPointerException 
 http://stacktrace.jenkins-ci.org/search?query=java.lang.NullPointerException
  at hudson.plugins.sshslaves.SSHLauncher.pemKeyEquals(SSHLauncher.java:471) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.pemKeyEqualsentity=method
   at 
 hudson.plugins.sshslaves.SSHLauncher.access$000(SSHLauncher.java:120) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.access$000entity=method
   at hudson.plugins.sshslaves.SSHLauncher$1.matches(SSHLauncher.java:449) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher$1.matchesentity=method
   at 
 com.cloudbees.plugins.credentials.matchers.AllOfMatcher.matches(AllOfMatcher.java:63)
  
 http://stacktrace.jenkins-ci.org/search/?query=com.cloudbees.plugins.credentials.matchers.AllOfMatcher.matchesentity=method
   at 
 com.cloudbees.plugins.credentials.CredentialsMatchers.firstOrDefault(CredentialsMatchers.java:356)
  
 http://stacktrace.jenkins-ci.org/search/?query=com.cloudbees.plugins.credentials.CredentialsMatchers.firstOrDefaultentity=method
   at 
 com.cloudbees.plugins.credentials.CredentialsMatchers.firstOrNull(CredentialsMatchers.java:374)
  
 http://stacktrace.jenkins-ci.org/search/?query=com.cloudbees.plugins.credentials.CredentialsMatchers.firstOrNullentity=method
   at 
 hudson.plugins.sshslaves.SSHLauncher.retrieveExistingCredentials(SSHLauncher.java:436)
  
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.retrieveExistingCredentialsentity=method
   at hudson.plugins.sshslaves.SSHLauncher.upgrade(SSHLauncher.java:404) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.upgradeentity=method
   at 
 hudson.plugins.sshslaves.SSHLauncher.getCredentials(SSHLauncher.java:389) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.getCredentialsentity=method
   at 
 hudson.plugins.sshslaves.SSHLauncher.openConnection(SSHLauncher.java:1044) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.openConnectionentity=method
   at hudson.plugins.sshslaves.SSHLauncher.launch(SSHLauncher.java:588) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.launchentity=method
   at hudson.slaves.SlaveComputer$1.call(SlaveComputer.java:230) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.slaves.SlaveComputer$1.callentity=method
   at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) 
 http://stacktrace.jenkins-ci.org/search/?query=java.util.concurrent.FutureTask$Sync.innerRunentity=method
   at java.util.concurrent.FutureTask.run(FutureTask.java:138) 
 http://stacktrace.jenkins-ci.org/search/?query=java.util.concurrent.FutureTask.runentity=method
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
  
 http://stacktrace.jenkins-ci.org/search/?query=java.util.concurrent.ThreadPoolExecutor$Worker.runTaskentity=method
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
  
 http://stacktrace.jenkins-ci.org/search/?query=java.util.concurrent.ThreadPoolExecutor$Worker.runentity=method
   at java.lang.Thread.run(Thread.java:662) 
 http://stacktrace.jenkins-ci.org/search/?query=java.lang.Thread.runentity=method
 [10/28/13 16:47:39] [SSH] Connection closed.


 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.pemKeyEqualsentity=method



-- 
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: Can anyone connect Linux SSH slaves with the latest Jenkins version?

2013-10-29 Thread Costin Caraivan
Wow - that was it. Thanks a lot for the pointer.

I'm not sure what the ruby-runtime plugin does to crash 3 different
connection types, but it' REALLY bad.


It definitely helped - saved me hours of debugging ;)

_
Costin Caraivan


On Tue, Oct 29, 2013 at 7:54 AM, Pasi pasi.tiai...@nsn.com wrote:

 Hi,

 I struggled with a similar problem for a long time, and in the end it was
 ruby-runtime plugin which prevented my SSH connections to work. As I don't
 use that plugin I uninstalled it and SSH started to work for some reason.

 Here's the original Google Groups discussion about my issue:
 https://groups.google.com/d/topic/jenkinsci-users/x8uML3W2NQ0/discussion

 Hope this helps!

 Cheers,
 -Pasi

 torstai, 24. lokakuuta 2013 17.02.30 UTC+3 Constantin Caraivan kirjoitti:

 Hello,

 I'm trying to connect an Ubuntu 12.04 64 bit master running on Oracle's
 1.6 JDK to a slave with an identical configuration, through SSH or through
 executing an SSH command on the master.

 And I'm getting nowhere. Just a death throbber in the Jenkins slave
 interface, no log entries on the master, no log entries on the slaves. It
 seems very similar to this issue but this is supposed to be fixed:
 https://issues.jenkins-ci.org/**browse/JENKINS-19758https://issues.jenkins-ci.org/browse/JENKINS-19758

 This is a critical part of Jenkins and it doesn't seem to be working.
 Anyone else hitting this issue?
 _
 Costin Caraivan

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


Java Version 7, Update 45 warning every time I try starting the slave

2013-10-29 Thread Jeremy Morton
When I run the javaws.exe command line to start slave-agent.jnlp, I now get 
this Security warning from Java, which implies that in a future Java 
update, I won't be able to run it at all.
 
Is this something that I need to configure to make Java happy, or is this a 
Jenkins-side fix?
 

Security Warning

Do you want to run this application?

Name: hudson.remoting.Launcher

Publisher: UNKNOWN

Location: *http://jenkinsmaster:8080* http://jenkinsmaster:8080/

Running applications by UNKNOWN publishers will be blocked in a future 
release

because it is potentially unsafe and a security risk.

Risk: This application will run with unrestricted access which may put your 
computer and personal information at

risk. The information provided is unreliable op unknown so it is 
recommended not to run this application unless

you are familiar with its source

This application will be blocked in a Future Java security update because 
the JAR File manifest does not

contain the Permissions attribute. Please contact the Publisher for more 
information. More Information

Select the box below, then click Run to start the application

I accept the risk and want to run this application  Run Cancel

-- 
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: Hyperlink in Excel to build a Jenkins job

2013-10-29 Thread Owen B. Mehegan
You can trigger a build with a GET. Under Build Triggers, check Trigger 
builds remotely and enter some string as a token. Then hit a URL like this:

http://your-jenkins-server:8080/job/SOME_JOB/build?token=TOKEN_STRING

Or 
http://your-jenkins-server:8080/job/SOME_JOB/buildWithParameters?token=TOKEN_STRINGbranch=fooother_param=bar
 
 if your build is parameterized.

--
IRC: autojack
Twitter: literatesavant
My dev productivity blog: http://holisticqa.com

On Tuesday, October 29, 2013 3:05:30 AM UTC-7, Glenn Halstead wrote:

 Hi Folks,

 I want to have a hyperlink in Excel that will build a Jenkins job.  I'm 
 currently failing to achieve this because the url to build a job must be a 
 POST but clicking the url in Excel performs a GET.  Can this be done?

 thanks

 Glenn


-- 
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: Can anyone connect Linux SSH slaves with the latest Jenkins version?

2013-10-29 Thread Stephen Connolly
Ok cool to know that data point. I will investigate so!

On Tuesday, 29 October 2013, Costin Caraivan wrote:

 Wow - that was it. Thanks a lot for the pointer.

 I'm not sure what the ruby-runtime plugin does to crash 3 different
 connection types, but it' REALLY bad.


 It definitely helped - saved me hours of debugging ;)

 _
 Costin Caraivan


 On Tue, Oct 29, 2013 at 7:54 AM, Pasi pasi.tiai...@nsn.comjavascript:_e({}, 
 'cvml', 'pasi.tiai...@nsn.com');
  wrote:

 Hi,

 I struggled with a similar problem for a long time, and in the end it was
 ruby-runtime plugin which prevented my SSH connections to work. As I don't
 use that plugin I uninstalled it and SSH started to work for some reason.

 Here's the original Google Groups discussion about my issue:
 https://groups.google.com/d/topic/jenkinsci-users/x8uML3W2NQ0/discussion

 Hope this helps!

 Cheers,
 -Pasi

 torstai, 24. lokakuuta 2013 17.02.30 UTC+3 Constantin Caraivan kirjoitti:

 Hello,

 I'm trying to connect an Ubuntu 12.04 64 bit master running on Oracle's
 1.6 JDK to a slave with an identical configuration, through SSH or through
 executing an SSH command on the master.

 And I'm getting nowhere. Just a death throbber in the Jenkins slave
 interface, no log entries on the master, no log entries on the slaves. It
 seems very similar to this issue but this is supposed to be fixed:
 https://issues.jenkins-ci.org/**browse/JENKINS-19758https://issues.jenkins-ci.org/browse/JENKINS-19758

 This is a critical part of Jenkins and it doesn't seem to be working.
 Anyone else hitting this issue?
 _
 Costin Caraivan

  --
 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 javascript:_e({},
 'cvml', 'jenkinsci-users%2bunsubscr...@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 javascript:_e({},
 'cvml', 'jenkinsci-users%2bunsubscr...@googlegroups.com');.
 For more options, visit https://groups.google.com/groups/opt_out.



-- 
Sent from my phone

-- 
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: Can Jenkins show changes to the database or dependencies, not just code?

2013-10-29 Thread Les Mikesell
On Tue, Oct 29, 2013 at 8:28 AM, random ultraran...@gmail.com wrote:
 Jenkins is great at making it obvious when a code change causes a test
 failure.
 It's less great when other things cause a test failure, like database
 changes or dependency changes.

 How can we have changes to these artifacts appear in the 'Recent changes'
 list?
 By artifacts I mean things like:

 The SQL file we use to create our blank database before each test run
 The text file into which we pipe all the versions of installed dependencies
 before each test run

 I have heard about the Artifact Diff Plugin, but I suspect that would _not_
 make artifacts as integrated as code changes are, so we would still have to
 click through manually every time to see if something changed. I'm looking
 for an automated/integrated solution so that Jenkins itself knows when an
 artifact has changed, and can make that obvious to users like it does for
 code changes.

The obvious thing is to push all of the things where you want to track
changes into your version control system so you get the changes logged
and listed in the same places as the code.  If you are using
subversion, you can use externals to pull in components from different
repositories or paths so you don't actually have to store everything
in the same tree.   Not sure how that text file of dependencies is
being created, but shouldn't that be something you know ahead of time
instead of building at runtime?If it has to do with component and
library versions, we handle that with svn externals too - controlling
the versioning by referencing tags.

-- 
  Les Mikesell
 lesmikes...@gmail.com

-- 
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: jenkins upgrade from 1.496 to 1.537, slaves cannot launch

2013-10-29 Thread Stephen Connolly
Migration code should have picked that up... Any chance you have a copy of
your config.xml from before upgrade? (If you do, send me an email privately
and I will give you instructions on how to sanitize the passwords before
sharing the file with me in such a way that I can reproduce your issue)

On Tuesday, 29 October 2013, Zetan Drableg wrote:

 I had to go through each node configuration.
  The management of credentials seems to have changed (for the better) but
 I had to re-select creds for each node after upgrade.
 169 slaves later. :(


 On Monday, October 28, 2013 4:50:46 PM UTC-7, Zetan Drableg wrote:

 Hi, Just upgraded Jenkins to pickup some bug fixes (disappearing job log).
 Rekey process is running in the background. Is it not done yet and causing 
 this?

 Every single slave failed to launch with this error:

 [10/28/13 16:47:39] [SSH] Opening SSH connection to 
 batvm06.perf.lab.tripwire.com:**22 http://batvm06.perf.lab.tripwire.com:22.
 ERROR: Unexpected error in launching a slave. This is probably a bug in 
 Jenkins.java.lang.NullPointerException 
 http://stacktrace.jenkins-ci.org/search?query=java.lang.NullPointerException
  at 
 hudson.plugins.sshslaves.**SSHLauncher.pemKeyEquals(**SSHLauncher.java:471) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.pemKeyEqualsentity=method
   at 
 hudson.plugins.sshslaves.**SSHLauncher.access$000(**SSHLauncher.java:120) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.access$000entity=method
   at 
 hudson.plugins.sshslaves.**SSHLauncher$1.matches(**SSHLauncher.java:449) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher$1.matchesentity=method
   at 
 com.cloudbees.plugins.**credentials.matchers.**AllOfMatcher.matches(**AllOfMatcher.java:63)
  
 http://stacktrace.jenkins-ci.org/search/?query=com.cloudbees.plugins.credentials.matchers.AllOfMatcher.matchesentity=method
   at 
 com.cloudbees.plugins.**credentials.**CredentialsMatchers.**firstOrDefault(**CredentialsMatchers.java:356)
  
 http://stacktrace.jenkins-ci.org/search/?query=com.cloudbees.plugins.credentials.CredentialsMatchers.firstOrDefaultentity=method
   at 
 com.cloudbees.plugins.**credentials.**CredentialsMatchers.**firstOrNull(**CredentialsMatchers.java:374)
  
 http://stacktrace.jenkins-ci.org/search/?query=com.cloudbees.plugins.credentials.CredentialsMatchers.firstOrNullentity=method
   at 
 hudson.plugins.sshslaves.**SSHLauncher.**retrieveExistingCredentials(**SSHLauncher.java:436)
  
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.retrieveExistingCredentialsentity=method
   at 
 hudson.plugins.sshslaves.**SSHLauncher.upgrade(**SSHLauncher.java:404) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.upgradeentity=method
   at 
 hudson.plugins.sshslaves.**SSHLauncher.getCredentials(**SSHLauncher.java:389) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.getCredentialsentity=method
   at 
 hudson.plugins.sshslaves.**SSHLauncher.openConnection(**SSHLauncher.java:1044)
  
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.openConnectionentity=method
   at 
 hudson.plugins.sshslaves.**SSHLauncher.launch(**SSHLauncher.java:588) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.launchentity=method
   at hudson.slaves.SlaveComputer$1.**call(SlaveComputer.java:230) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.slaves.SlaveComputer$1.callentity=method
   at 
 java.util.concurrent.**FutureTask$Sync.innerRun(**FutureTask.java:303) 
 http://stacktrace.jenkins-ci.org/search/?query=java.util.concurrent.FutureTask$Sync.innerRunentity=method
   at java.util.concurrent.**FutureTask.run(FutureTask.**java:138) 
 http://stacktrace.jenkins-ci.org/search/?query=java.util.concurrent.FutureTask.runentity=method
   at 
 java.util.concurrent.**ThreadPoolExecutor$Worker.**runTask(ThreadPoolExecutor.**java:886)
  
 http://stacktrace.jenkins-ci.org/search/?query=java.util.concurrent.ThreadPoolExecutor$Worker.runTaskentity=method
   at 
 java.util.concurrent.**ThreadPoolExecutor$Worker.run(**ThreadPoolExecutor.java:908)
  
 http://stacktrace.jenkins-ci.org/search/?query=java.util.concurrent.ThreadPoolExecutor$Worker.runentity=method
   at java.lang.Thread.run(Thread.**java:662) 
 http://stacktrace.jenkins-ci.org/search/?query=java.lang.Thread.runentity=method
 [10/28/13 16:47:39] [SSH] Connection closed.


 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.pemKeyEqualsentity=method

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

Re: jenkins upgrade from 1.496 to 1.537, slaves cannot launch

2013-10-29 Thread Stephen Connolly
An update for the list. Zetan has provided me with a sanitised copy of his
config.xml. Hopefully I will be able to reproduce his UX and improve the
migration code. I am tracking this issue as
https://issues.jenkins-ci.org/browse/JENKINS-20332


On 29 October 2013 21:14, Stephen Connolly
stephen.alan.conno...@gmail.comwrote:


 Migration code should have picked that up... Any chance you have a copy of
 your config.xml from before upgrade? (If you do, send me an email privately
 and I will give you instructions on how to sanitize the passwords before
 sharing the file with me in such a way that I can reproduce your issue)

 On Tuesday, 29 October 2013, Zetan Drableg wrote:

 I had to go through each node configuration.
  The management of credentials seems to have changed (for the better) but
 I had to re-select creds for each node after upgrade.
 169 slaves later. :(


 On Monday, October 28, 2013 4:50:46 PM UTC-7, Zetan Drableg wrote:

 Hi, Just upgraded Jenkins to pickup some bug fixes (disappearing job log).
 Rekey process is running in the background. Is it not done yet and causing 
 this?

 Every single slave failed to launch with this error:

 [10/28/13 16:47:39] [SSH] Opening SSH connection to 
 batvm06.perf.lab.tripwire.com:**22 http://batvm06.perf.lab.tripwire.com:22.
 ERROR: Unexpected error in launching a slave. This is probably a bug in 
 Jenkins.java.lang.NullPointerException 
 http://stacktrace.jenkins-ci.org/search?query=java.lang.NullPointerException
 at 
 hudson.plugins.sshslaves.**SSHLauncher.pemKeyEquals(**SSHLauncher.java:471) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.pemKeyEqualsentity=method
  at 
 hudson.plugins.sshslaves.**SSHLauncher.access$000(**SSHLauncher.java:120) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.access$000entity=method
  at 
 hudson.plugins.sshslaves.**SSHLauncher$1.matches(**SSHLauncher.java:449) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher$1.matchesentity=method
  at 
 com.cloudbees.plugins.**credentials.matchers.**AllOfMatcher.matches(**AllOfMatcher.java:63)
  
 http://stacktrace.jenkins-ci.org/search/?query=com.cloudbees.plugins.credentials.matchers.AllOfMatcher.matchesentity=method
  at 
 com.cloudbees.plugins.**credentials.**CredentialsMatchers.**firstOrDefault(**CredentialsMatchers.java:356)
  
 http://stacktrace.jenkins-ci.org/search/?query=com.cloudbees.plugins.credentials.CredentialsMatchers.firstOrDefaultentity=method
  at 
 com.cloudbees.plugins.**credentials.**CredentialsMatchers.**firstOrNull(**CredentialsMatchers.java:374)
  
 http://stacktrace.jenkins-ci.org/search/?query=com.cloudbees.plugins.credentials.CredentialsMatchers.firstOrNullentity=method
  at 
 hudson.plugins.sshslaves.**SSHLauncher.**retrieveExistingCredentials(**SSHLauncher.java:436)
  
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.retrieveExistingCredentialsentity=method
  at 
 hudson.plugins.sshslaves.**SSHLauncher.upgrade(**SSHLauncher.java:404) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.upgradeentity=method
  at 
 hudson.plugins.sshslaves.**SSHLauncher.getCredentials(**SSHLauncher.java:389)
  
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.getCredentialsentity=method
  at 
 hudson.plugins.sshslaves.**SSHLauncher.openConnection(**SSHLauncher.java:1044)
  
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.openConnectionentity=method
  at 
 hudson.plugins.sshslaves.**SSHLauncher.launch(**SSHLauncher.java:588) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.plugins.sshslaves.SSHLauncher.launchentity=method
  at hudson.slaves.SlaveComputer$1.**call(SlaveComputer.java:230) 
 http://stacktrace.jenkins-ci.org/search/?query=hudson.slaves.SlaveComputer$1.callentity=method
  at 
 java.util.concurrent.**FutureTask$Sync.innerRun(**FutureTask.java:303) 
 http://stacktrace.jenkins-ci.org/search/?query=java.util.concurrent.FutureTask$Sync.innerRunentity=method
  at java.util.concurrent.**FutureTask.run(FutureTask.**java:138) 
 http://stacktrace.jenkins-ci.org/search/?query=java.util.concurrent.FutureTask.runentity=method
  at 
 java.util.concurrent.**ThreadPoolExecutor$Worker.**runTask(ThreadPoolExecutor.**java:886)
  
 http://stacktrace.jenkins-ci.org/search/?query=java.util.concurrent.ThreadPoolExecutor$Worker.runTaskentity=method
  at 
 java.util.concurrent.**ThreadPoolExecutor$Worker.run(**ThreadPoolExecutor.java:908)
  
 http://stacktrace.jenkins-ci.org/search/?query=java.util.concurrent.ThreadPoolExecutor$Worker.runentity=method
  at java.lang.Thread.run(Thread.**java:662) 
 http://stacktrace.jenkins-ci.org/search/?query=java.lang.Thread.runentity=method
 [10/28/13 16:47:39] [SSH] Connection closed.


 

Backups

2013-10-29 Thread Jared Griffith
I was wondering what files are necessary to back up a Jenkins master
instance?  I don't really think it's necessary to backup the workspace and
all that, I just want what is necessary in case the server goes boom and I
have to put it up on another server.  Yeah, it would be nice to have all of
the workspace / history stuff, but I don't think it's mandatory.

-- 

Jared Griffith
Linux Administrator, PICS Auditing, LLC
P: (949) 936-4574
C: (909) 653-7814

http://www.picsauditing.com

17701 Cowan #140 | Irvine, CA | 92614

Join PICS on LinkedIn and Twitter!

https://twitter.com/PICSAuditingLLC

-- 
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: Backups

2013-10-29 Thread krishna chaitanya kurnala
Hi Jared

The easiest way is to maintain a copy of .jenkins folder on diff server and
have a rsync command run with cron or something to keep them in sync, take
a look at the backup plugins as well.

thanks
Krishna

Krishna Chaitanya


On Tue, Oct 29, 2013 at 4:30 PM, Jared Griffith
jgriff...@picsauditing.comwrote:

 I was wondering what files are necessary to back up a Jenkins master
 instance?  I don't really think it's necessary to backup the workspace and
 all that, I just want what is necessary in case the server goes boom and I
 have to put it up on another server.  Yeah, it would be nice to have all of
 the workspace / history stuff, but I don't think it's mandatory.

 --

 Jared Griffith
 Linux Administrator, PICS Auditing, LLC
 P: (949) 936-4574
 C: (909) 653-7814

 http://www.picsauditing.com

 17701 Cowan #140 | Irvine, CA | 92614

 Join PICS on LinkedIn and Twitter!

 https://twitter.com/PICSAuditingLLC

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


Build Flow Plugin + thread dump

2013-10-29 Thread Slide
I have an issue with the Build Flow plugin in that once a job that is
launched completes, the build flow never continues on. I've reduced my
build flow to a single step which just launches another build. I know that
build completes because I can see in it's build log that it is done, but
the flow never continues or completes. I grabbed a thread dump and put it
at [1], I am not sure how to go about debugging this further.

slide

1 - https://gist.github.com/slide/7225142

-- 
Website: http://earl-of-code.com

-- 
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: Backups

2013-10-29 Thread Ingo Richter
Hey,

I have a simple groovy script that creates a backup on our master machine.
I have a backup job that will execute this groovy script. The script itself 
creates a zip file with a couple of config files. I've used the backup to 
restore our build machines in very little time last week. Thanks to the 
backup.

I hope that help,
 Ingo

On Tuesday, October 29, 2013 4:30:44 PM UTC-7, Jared Griffith wrote:

 I was wondering what files are necessary to back up a Jenkins master 
 instance?  I don't really think it's necessary to backup the workspace and 
 all that, I just want what is necessary in case the server goes boom and I 
 have to put it up on another server.  Yeah, it would be nice to have all of 
 the workspace / history stuff, but I don't think it's mandatory.

 -- 

 Jared Griffith
 Linux Administrator, PICS Auditing, LLC
 P: (949) 936-4574
 C: (909) 653-7814

 http://www.picsauditing.com

 17701 Cowan #140 | Irvine, CA | 92614

 Join PICS on LinkedIn and Twitter!  

 https://twitter.com/PICSAuditingLLC
  

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


jenkins-backup.groovy
Description: Binary data


Re: Backups

2013-10-29 Thread Jared Griffith
I was thinking the rsync thing, but I really don't want to sync the 16 Gb
workspace directory.  I wasn't sure if there would be an issue with that.
 Maybe this groovy script will work fro what I want.


On Tue, Oct 29, 2013 at 5:58 PM, Ingo Richter ingo.rich...@gmail.comwrote:

 Hey,

 I have a simple groovy script that creates a backup on our master machine.
 I have a backup job that will execute this groovy script. The script
 itself creates a zip file with a couple of config files. I've used the
 backup to restore our build machines in very little time last week. Thanks
 to the backup.

 I hope that help,
  Ingo


 On Tuesday, October 29, 2013 4:30:44 PM UTC-7, Jared Griffith wrote:

 I was wondering what files are necessary to back up a Jenkins master
 instance?  I don't really think it's necessary to backup the workspace and
 all that, I just want what is necessary in case the server goes boom and I
 have to put it up on another server.  Yeah, it would be nice to have all of
 the workspace / history stuff, but I don't think it's mandatory.

 --

 Jared Griffith
 Linux Administrator, PICS Auditing, LLC
 P: (949) 936-4574
 C: (909) 653-7814

 http://www.picsauditing.com

 17701 Cowan #140 | Irvine, CA | 92614

 Join PICS on LinkedIn and Twitter!

 https://twitter.com/PICSAuditingLLC

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




-- 

Jared Griffith
Linux Administrator, PICS Auditing, LLC
P: (949) 936-4574
C: (909) 653-7814

http://www.picsauditing.com

17701 Cowan #140 | Irvine, CA | 92614

Join PICS on LinkedIn and Twitter!

https://twitter.com/PICSAuditingLLC

-- 
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: Is jenkins bug module artifacts were not being deleted by the log rotator (issue 17508) still there in 1.509.4

2013-10-29 Thread Buddika Sanjeewa
I found the answer in the bug report in label section,

https://issues.jenkins-ci.org/browse/JENKINS-17508

it mentioned that bug was fixed in 1.509.3-fixed
 

 Thanks and Regards
 Sanjeewa


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