Re: Jenkins - Copy build log from master to a shared drive

2015-08-11 Thread Jovan Jevric
I run into same issue. Finally I've solved this by archiving textfile 
containining link to current workspace(Build ID and Job Name) of job which I'm 
interested in. Further I've used Log Parser plugin, whcih actually provides 
full build log propperly formatted in html and txt format which is actually to 
be arcived as well.

Afterwards I've collected all the logs I'm interested in by simply running a 
sccript on an upstream job.

Hope that helps!
Cheers


processed by David.fx 
Subject: Jenkins - Copy build log from master to a shared drive (05-Aug-2015 
15:33)
From:Rajasekar Vasudevan 
To:  j...@huber-online.com


Can someone direct me here? I have a simple job configured in Jenkins on a 
WINDOWS environment (master and all slaves running on windows) and the job is 
supposed to run on a particular slave. When you build the job, the build log ( 
log.log) gets stored in ” %JENKINS_HOME%\jobs\\builds\%BUILD_NUMBER%\” on the 
master.


I do have a Jenkins workspace (which is required when you add a slave node) set 
on the slave for this job–where nothing gets stored when the job runs.


With this scenario, I would like to copy the build log (log.log file that’s 
available on the master) to a share drive. Please advise me the way to get this 
done. I have tried few plugins “Copy to slave”, “Copy Artifact Plugin” and 
ArtifactDeployer Plugin…I could not get them working to meet what I need
-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/e4e9da6d-54d8-47b7-9bd6-3f2085967f8e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/DIIE.AE980076BAD4%40192.168.11.6.
For more options, visit https://groups.google.com/d/optout.


Re: monitor if a has NOT changed?

2015-08-11 Thread Jovan Jevric
probably by using CLI of your versioning tool, if you're using any.^^ 

Simply by executing shell/batch cmd and requesting status of file.


processed by David.fx 
Subject: monitor if a has NOT changed? (04-Aug-2015 5:53)
From:moodysma sma 
To:  j...@huber-online.com


Is there a way to check if a file has not changed given a certain time-limit?
-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/17929372-82e7-476b-80d4-31d7a4c0f5dd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/DIIE.B6B50076BAA0%40192.168.11.6.
For more options, visit https://groups.google.com/d/optout.


Another Jenkins server as backup

2015-08-11 Thread 'Pulkit Lall' via Jenkins Users
Hi everyone, 
I am new to Jenkins and just thought of doing the below mentioned scenario 
but not sure how to proceed. 
Here is the scenario: 

I have Jenkins server running on my Linux/Windows machine which runs 
multiple jobs. 

Now, the problem that I thought was if some one triggered a job in Jenkins 
and in middle, Jenkins server stopped responding then all the Jenkins jobs 
with configuration, workspace, artifacts, etc would not be accessible and 
Jenkins admin will need to fix this asap but till then the Jenkins server 
is not accessible by anyone and no jobs can be triggered. 

I was thinking, if I could create another Jenkins server on different 
machine having same OS, Jenkins version, same plugins installed then can I 
make sure that if my main Jenkin server fails then this copy should 
automatically be live i.e. link of copy Jenkins be accessed instead of Main 
Jenkins. 

If yes, what is the pre-requisites that I need to keep in mind and how can 
I sync between the two Jenkins. 

I would appreciate if anyone could help me in this.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/f69a516f-4375-4562-9c36-6f088955d0fa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


matrix reload plugin and junit results publishing

2015-08-11 Thread Bryan Pearson
I am currently having a problem that seems to inconsistently occur,
and I am not sure what the issue is.

We have a job that after its completion outputs .xml files, we then
have junit set to publish them, on a few occasions the xml wont get
updated following the run.  I'll receive the error:
-
ERROR: Publisher hudson.tasks.junit.JUnitResultArchiver aborted due to exception

hudson.AbortException: Test reports were found but none of them are
new. Did tests run?

For example, /workspace/test/reports/TEST-TestName.xml is 7 min 9 sec old.
-

In this case the prior run was 7 min earlier.

Bryan

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CA%2BKcopsZbfw9%2BkCKV24Wt4DCg6BkO4X_wCVeduWhyGEjRPd4kg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Groovy script vs. system script : file info needed to affect build

2015-08-11 Thread Brantone
I'm well aware of the differences (and headaches) between Groovy script and 
system Groovy script .. my question involves the following scenario:
After an SCM checkout is done on remote slave node, need to grep for a 
string in a specific file, whose value will be used for all downstream 
jobs, preferably added as a parameter to current build then just auto 
passed on.


So the options are:
1.) Use System Groovy script to remote to the slave to grep the file for 
the string, and off and running.
2.) Use Groovy script to grep for string and hack to include class path 
so ParametersAction can be used to add new StringParameterValue.
3.) Use Groovy script to grep for string and simply output to file, then 
use EnvInject to read it back in as environment var.
4.)  ??

Is there a preferred or standard method? Or something I'm not considering 
...
Cheers

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/b3255169-67fb-42a0-b10d-00ca49d89e21%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Naming jobs : delimiters : hyphens vs. underscores

2015-08-11 Thread Brantone
Good point, if a standard has been set "no spaces" (which is good 
regardless), then that solves.
Thanks

On Tuesday, 14 July 2015 10:55:33 UTC-7, James Nord wrote:
>
> On 14/07/2015 08:44, Brantone wrote: 
> > I fully appreciate that this one's a preference thing, but curious if 
> > there's general consensus, and if any technical gotchas one way or 
> > another. 
> > 
> > (actually surprised search find anything) 
> > 
> if you use an underscore then the link will contain the underscore. with 
> link underlinging in various clients it is sometimes not obvious that 
> the name contains an underscore vs an unecnoded space. 
> So I would go with the hyphen approach. 
>
> But this is just my view.  Above all I would say choose one and be 
> consistent in your installation(s). 
>
> /James 
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/d1d6dd6d-69c4-4715-9d1c-dee584f6f4a9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


SSH Remote Shell plugin that uses Credential plugin?

2015-08-11 Thread Peter Loron
Hi. I'm working on a build job that needs to SSH in to a target machine and 
execute a command. The SSH plugins I've looked at which provide a remote 
SSH shell build step do not seem to use the Credential plugin to manage 
secrets. 

Am I missing something or have they simply not been updated to support it?

Thanks.

-Pete

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/55dcc533-f58f-4236-8cca-e624707e94a1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Workflow Jobs and SCM Polling

2015-08-11 Thread Gregory Symons
I'm seeing something a little weird in one of my workflow jobs, and I'm not 
sure if I'm doing something wrong or if it's a bug. Basically I have a top 
level job that's coordinating several component jobs. The top level job 
monitors several repos (right now it's just polling every 5 minutes) for 
changes, and when it sees changes, it kicks off the component jobs. 
However, what I'm seeing is the top-level job is running multiple times for 
a single change. The only thing I can think of for what's happening is that 
the change isn't getting recorded as having been built before the next 
polling cycle runs, because the top-level build hasn't finished. Is that a 
reasonable assumption, or should I Iook somewhere else for the problem? An 
outline of the top level build is below, if that helps.

checkout([/* details for repo1 */, subdir: 'repo1'])
checkout([/* details for repo2 */, subdir: 'repo2'])
checkout([/* details for repo3 */, subdir: 'repo2'])

archive 'repo1/'
archive 'repo2/'
archive 'repo3/'

c1 = build([job: 'component-1'])
c2 = build([job: 'component-2'], params: [[$class: 'RunParameterValue', 
name: C1_ARTIFACTS, runId: c1.id]])
c3 = build([job: 'component-3], params: [[$class: 'RunParameterValue', 
name: C1_ARTIFACTS,  runId: c1.id],
[$class: 
'RunParameterValue', name: C2_ARTIFACTS, runId: c2.id]])

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/3667cfee-0598-47f6-8f00-b09405193904%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins CLI Connection Issue

2015-08-11 Thread Jayesh Gohil
Hi,

I am trying to call Jenkins client within Jenkins job. However just not 
been able to get this to work. The id_rsa & id_rsa.pub files exists for 
Jenkins user which is a machine user. We have set up LDAP authentication 
with role based security. 

I can;t figure out why Jenkins will not connect to itself. Is there some 
obvious thing which I am missing?. Please suggest.

Jenkins Version: 1.613


It keeps throwing following exception.

java -jar /tools/cc-utils/ext-lib/jenkins-cli.jar -s 
https://jenkins.patida.release.in.here.com/ 

 help


Suppressed: java.net.ConnectException: Connection refused
at java.net.PlainSocketImpl.socketConnect(Native Method)
at 
java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339)
at 
java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200)
at 
java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:579)
at 
sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:637)
at 
sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:160)
at sun.net.NetworkClient.doConnect(NetworkClient.java:180)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:432)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:527)
at 
sun.net.www.protocol.https.HttpsClient.(HttpsClient.java:264)
at 
sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)
at 
sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)
at 
sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:933)
at 
sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)
at 
sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:1092)
at 
sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:250)
at 
hudson.cli.FullDuplexHttpStream.(FullDuplexHttpStream.java:77)
at hudson.cli.CLI.connectViaHttp(CLI.java:156)
at hudson.cli.CLI.(CLI.java:130)
... 3 more
Caused by: java.net.ConnectException: Connection refused
at java.net.PlainSocketImpl.socketConnect(Native Method)
at 
java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339)
at 
java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200)
at 
java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
at java.net.Socket.connect(Socket.java:579)
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:637)
at 
sun.security.ssl.BaseSSLSocketImpl.connect(BaseSSLSocketImpl.java:160)
at sun.net.NetworkClient.doConnect(NetworkClient.java:180)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:432)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:527)
at sun.net.www.protocol.https.HttpsClient.(HttpsClient.java:264)
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367)
at 
sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191)
at 
sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:933)
at 
sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177)
at 
sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.java:153)
at hudson.cli.CLI.getCliTcpPort(CLI.java:264)



Thanks,


Jayesh


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/8e1bff55-5c22-4a6f-b3cc-6717717d3bc1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Debug 'Trigger a remote parameterized job'

2015-08-11 Thread Stefan Onea
Hello,

Tried the plugin as well without success. Got the following call stack:

ERROR: Remote build failed for the following reason, but the build will 
continue:ERROR : Max 
number of connection retries have been exeeded.ERROR 
: Remote build failed for 
the following reason, but the build will continue:ERROR 
: Got a blank response 
from Remote Jenkins Server , cannot continue.FATAL 
: 
nulljava.lang.NullPointerException 
  
 at 
org.jenkinsci.plugins.ParameterizedRemoteTrigger.RemoteBuildConfiguration.perform(RemoteBuildConfiguration.java:535)
 

at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20) 

at 
hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:770)
 

at hudson.model.Build$BuildExecution.build(Build.java:199) 

at hudson.model.Build$BuildExecution.doRun(Build.java:160) 

at 
hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:533) 

at hudson.model.Run.execute(Run.java:1745) 

at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43) 

at hudson.model.ResourceController.execute(ResourceController.java:89) 

at hudson.model.Executor.run(Executor.java:240) 




Any alternative to this?




On Monday, 29 June 2015 11:21:01 UTC-4, Steve K wrote:
>
>
> Hello,
>
> In my system configuration, I setup the plugin to use the Credentials plugin.
> I provided the username and password of a user on the remote system with 
> plenty of rights to run the job.
>
> The job, however, is not launching.
> I see the following in the console output from the job that attempts to 
> launch the remote job:
>
> Connection to remote server failed, waiting for to retry - 10 seconds until 
> next attempt.
>
> Retry attempt #5 out of 5
> ERROR: Remote build failed for the following reason, but the build will 
> continue:ERROR : Max 
> number of connection retries have been exeeded.ERROR 
> : Remote build failed 
> for the following reason, but the build will continue:ERROR 
> : Got a blank response 
> from Remote Jenkins Server [http://the RemoteJenkinsServer:8080 
> ], cannot continue.FATAL 
> : 
> nulljava.lang.NullPointerException 
> 
> at 
> org.jenkinsci.plugins.ParameterizedRemoteTrigger.RemoteBuildConfiguration.perform(RemoteBuildConfiguration.java:535)
>  
> 
>   at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20) 
> 
>   at 
> hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:770)
>  
> 
>   at hudson.model.Build$BuildExecution.build(Build.java:199) 
> 
> etc...
>
> Do you have an idea of what the problem might be?
> How do I go about debugging this problem?
> Is there a log somewhere that might contain more helpful information?
>
> Thanks in advance.
>
>
>

-- 
You received this message because you are subscribed to the Googl

RE: Seeting up email notification

2015-08-11 Thread John Mellor
KKCS asked:

Ø  Can anyone suggest a way to solve this problem?

SMTP mail uses a simple in-band control mechanism and FTP-like ASCII primitives.
You should be able to login to the build machine and telnet to the SMTP port on 
the mail server and emulate an MUA by hand.  That will allow you to debug the 
issue very quickly.  You state that you are getting connection refused, so I’ll 
bet you either have a firewall issue, a nonstandard SMTP port, or an MTA 
unknown-source-blocking problem.

From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of KKCS
Sent: August-11-15 12:01
To: Jenkins Users
Subject: Seeting up email notification

Hi all,

While configuring Jenkins for sending email notification on build failures with 
the relevant SMTP server and port number it Fails to send out email reporting 
Connection refused: connect.

Can anyone suggest a way to solve this problem?

Thank you.


--
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/cc363b3a-1887-4294-9980-301985b012d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/7c272c44c2e541ba951b87a97f44bac1%40mbx01colo01p.esentire.local.
For more options, visit https://groups.google.com/d/optout.


Re: Seeting up email notification

2015-08-11 Thread Slide
Which email plugin are you using? Mailer or email-ext?

On Tue, Aug 11, 2015 at 9:01 AM KKCS  wrote:

> Hi all,
>
> While configuring Jenkins for sending email notification on build
> failures with the relevant SMTP server and port number it Fails to send out
> email reporting Connection refused: connect.
>
> Can anyone suggest a way to solve this problem?
>
> Thank you.
>
>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/cc363b3a-1887-4294-9980-301985b012d6%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAPiUgVeLQTouNpuB_9hBbC%2BYrMm9vvDH30%3DJ24M%3DQZVeyFvwSQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Seeting up email notification

2015-08-11 Thread KKCS
Hi all,

While configuring Jenkins for sending email notification on build 
failures with the relevant SMTP server and port number it Fails to send out 
email reporting Connection refused: connect.

Can anyone suggest a way to solve this problem?

Thank you.


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/cc363b3a-1887-4294-9980-301985b012d6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Get jenkins workspace build number when running job in parallel

2015-08-11 Thread COLLIGNON, Thomas
Hi,

If someone knows a way to get the workspace number when a job is running in 
parallel ? (execute multiple builds concurrently)

Is there a variable for this?

In Jenkins docs : When Jenkins creates different workspaces for isolation, 
Jenkins appends "@num" to the workspace directory name, e.g. "@2".

I would get the @num variable.

Thanks all


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/345FC8DD4FBD9741BB50FF537A8DA8A30127F617F8%40wpbddmel1.UEM.LAN.
For more options, visit https://groups.google.com/d/optout.


Re: Chicken-Egg issue with job references in Build Flow

2015-08-11 Thread Adam Daughterson
Ha, it appears that I needed a proper exception handler downstream.

Thanks for the suggestion!

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/8d557e12-cfe0-4fc0-950e-89c9a2f80e8f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins won't start

2015-08-11 Thread Kevin Bond
Hello, I just upgraded to 1.624 and now Jenkins won't start - it is stuck 
at "Please wait while Jenkins is getting ready to work" indefinitely. Here 
is a thread dump: https://gist.github.com/kbond/b673d053666c39233d6d

Can anyone help?

Thanks,
Kevin

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/8dfc5a23-d353-4648-9177-f8b2ba3134b0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


pipeline plugin and avoiding concurrent builds

2015-08-11 Thread Erwan de Ferrières
Hi all,
i'm facing an issue with my pipeline configuration: i just want one 
pipeline running at a time.
The steps are : DB creation, build, unit tests, deploy then drop DB.
So I don't want any other pipelines running until the running one is 
finished.

Is there a way to implement that ? Or am I using it wrongly ?

Thanks and regards,

Erwan

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/c6bf4929-e5e6-4656-bc3c-c1f1cc93fb44%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[Active Choices Plugin] How to use the Jenkins Build object jenkinsBuild to get Environment Variables

2015-08-11 Thread mr
Hi everybody!

I need an example that will show how to use the Jenkins Build object 
"jenkinsBuild" to get Environment Variables within an Active Choices 
Reactive Parameters.

Thanks in advance for any help!

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/2ab59427-26bc-4a2f-9085-b170a01c9e11%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.