Re: no results in vstest.console.exe

2017-09-05 Thread suresh kumar
Which version of OpenCover you are using?

On Tuesday, September 5, 2017 at 3:30:10 PM UTC+5:30, sushmita wrote:
>
> My unit tests are being recognized but when commiting it shows no results.
> I have used the following windows batch command.
>
> C:\PROGRA~2\OpenCover\OpenCover.Console.exe -register:path64 
> -target:"C:\Program Files (x86)\Microsoft Visual Studio 
> 14.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow\Vstest.console.exe" 
>  -targetargs:"%WORKSPACE%\UnitTestPOMS\Debug\UnitTestPOMS.dll" 
> /Platform:x86 /Framework:framework45 -output:"results.xml" -mergebyhash 
> -skipautoprops /EnableCodeCoverage
>
>
> md %WORKSPACE%\CodeCoverage
>  C:\ReportGenerator\bin\ReportGenerator.exe -reports:"results.xml" 
> -targetdir:%WORKSPACE%\CodeCoverage 
>
>

-- 
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/66150881-20fd-4344-a60f-a8fb932a5349%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


NO copy artifactory option available after installing plugin

2017-09-05 Thread phanikumar
I have installed copy artifactory plugin to copy files of the previous job to
perform a rollback. But the plugin is an option is not getting displayed in
the Job configuration. Can someone help me out on this?

Thanks in advance.



--
Sent from: http://jenkins-ci.361315.n4.nabble.com/Jenkins-users-f361316.html

-- 
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/1504661878466-0.post%40n4.nabble.com.
For more options, visit https://groups.google.com/d/optout.


Our plugin stopped processing concurrent jobs

2017-09-05 Thread manisha
Hi,

Our plugin was working fine few versions ago with processing concurrent 
jobs. Now, we see that there is a delay in processing of concurrent jobs. 
Nothing changed in our plugin. Can someone suggest what may have gone wrong?

Manisha

-- 
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/66c4934e-425d-4857-833f-203d4d9818d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


sshAgent connection error through Pipeline with Private key

2017-09-05 Thread sabharwal81
Hello everyone,

I am stuck with one odd problem where i am trying to run remote command on 
linux server from my slave machine (windows server) as part of Pipeline 
script. As SSH connections are only supported using Private/Public Keys, i 
did follow steps mentioned in 
blog 
https://medium.com/@weblab_tech/how-to-publish-artifacts-in-jenkins-f021b17fde71
 
to generate keys to be later used for calls. Below are things i have done 
so far:
- Connected to slave server and created key using ssh-keygen.
- Created new credential using key/passphrase in Jenkins (id as 
server_ssh_key).
- Copied over the public key under /authorized_keys (id_rsa.pub) on the 
remote server.
- Connected from Slave server to the remote linux server through console to 
allow entry to "known host" file on the slave server.
- Updated Pipeline script to use below code to allow use of newly created 
credentials.
pipeline {
options {
timestamps()
}
agent {label 'att_server_slave'}
stages {
stage('Builds') {
steps {
script{ 
stage ('Starting build_rhel56_x64_1')  
{
  sshagent(credentials: ['server_ssh_key']) {

ssh 'root@192.168.2.111 ls'
}
}
}
}
}
}
}

when i am trying to run this pipeline script, i am getting below error:

00:13:26 [ssh-agent] Using credentials root
00:13:26 [ssh-agent] Looking for ssh-agent implementation...
00:13:27 [ssh-agent]   Exec ssh-agent (binary ssh-agent on a remote machine)
00:13:27 $ ssh-agent
00:13:27 SSH_AUTH_SOCK=/tmp/ssh-OzJHVK5660/agent.5660
00:13:27 SSH_AGENT_PID=6056
00:13:27 $ ssh-add 
C:\EngineJenkins\workspace\pipeline_test@tmp\private_key_3271471486698300052.key
00:13:28   3 [main] *ssh-add 2176 tty_list::allocate_tty: No tty 
allocated*

Can someone please help in understanding what wrong i am doing? Or what 
specific check/step i am missing?

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/73636eda-0809-441d-8b99-65f97b6236e2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Publish over CIFS configuration

2017-09-05 Thread Ted
After some examination of logs & discussion on IRC.  Slide & I determined
that the problem is that I am requiring a min protocol of SMB2.  While this
is an important feature (protects against WannaCry), it is not implemented
in jcifs, which is the library currently used for the smbclient
connection.  He suggested that there are some Java libraries that may
support protocols above SMB1 (e.g. smbj), but for now that is what we've
run into.  I will be looking into alternative ways to publish my builds.

On Tue, Sep 5, 2017 at 5:22 PM Ted  wrote:

> this is the full stack trace:
>
> jenkins.plugins.publish_over.BapPublisherException: 
> jenkins.plugins.publish_over.BapPublisherException: Exception when testing 
> config. URL [smb://192.168.1.201/shared/], Message: [Failed to connect: 
> 0.0.0.0<00>/192.168.1.201]
>   at 
> jenkins.plugins.publish_over_cifs.CifsHostConfiguration.testConfig(CifsHostConfiguration.java:206)
>   at 
> jenkins.plugins.publish_over_cifs.CifsHostConfiguration.createClient(CifsHostConfiguration.java:97)
>   at 
> jenkins.plugins.publish_over_cifs.descriptor.CifsPublisherPluginDescriptor.doTestConnection(CifsPublisherPluginDescriptor.java:158)
>   at 
> java.lang.invoke.MethodHandle.invokeWithArguments(java.base@9-internal/MethodHandle.java:636)
>   at org.kohsuke.stapler.Function$MethodFunction.invoke(Function.java:343)
>   at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:184)
>   at 
> org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:117)
>   at org.kohsuke.stapler.MetaClass$1.doDispatch(MetaClass.java:129)
>   at 
> org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58)
>   at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:715)
>   at org.kohsuke.stapler.Stapler.invoke(Stapler.java:845)
>   at org.kohsuke.stapler.MetaClass$5.doDispatch(MetaClass.java:248)
>   at 
> org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58)
>   at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:715)
>   at org.kohsuke.stapler.Stapler.invoke(Stapler.java:845)
>   at org.kohsuke.stapler.Stapler.invoke(Stapler.java:649)
>   at org.kohsuke.stapler.Stapler.service(Stapler.java:238)
>   at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
>   at 
> org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:812)
>   at 
> org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1669)
>   at 
> hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:135)
>   at 
> hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:138)
>   at 
> org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)
>   at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:80)
>   at 
> org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)
>   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 
> hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
>   at 
> org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)
>   at 
> hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
>   at 
> org.acegisecurity.ui.rememberme.RememberMeProcessingFilter.doFilter(RememberMeProcessingFilter.java:142)
>   at 
> hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
>   at 
> org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271)
>   at 
> hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
>   at 
> jenkins.security.BasicHeaderProcessor.doFilter(BasicHeaderProcessor.java:92)
>   at 
> hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
>   at 
> org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)
>   at 
> hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:67)
>   at 
> hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
>   at 
> hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:90)
>   at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:171)
>   at 
> org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)
>   at 
> org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:49)
>   at 
> org

Re: enable environment variables and add variable from Dockerfile

2017-09-05 Thread Li Z
Still have not find any solution yet. 

On Wednesday, August 30, 2017 at 2:34:17 PM UTC-7, Li Z wrote:
>
> Is there a way to enable environment variables and add variable from 
> Dockerfile or a init.groovy.d script?
>
> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/cfbadd8a-e0a4-4253-9e4b-77e41103c469%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Publish over CIFS configuration

2017-09-05 Thread Ted
this is the full stack trace:

jenkins.plugins.publish_over.BapPublisherException:
jenkins.plugins.publish_over.BapPublisherException: Exception when
testing config. URL [smb://192.168.1.201/shared/], Message: [Failed to
connect: 0.0.0.0<00>/192.168.1.201]
at 
jenkins.plugins.publish_over_cifs.CifsHostConfiguration.testConfig(CifsHostConfiguration.java:206)
at 
jenkins.plugins.publish_over_cifs.CifsHostConfiguration.createClient(CifsHostConfiguration.java:97)
at 
jenkins.plugins.publish_over_cifs.descriptor.CifsPublisherPluginDescriptor.doTestConnection(CifsPublisherPluginDescriptor.java:158)
at 
java.lang.invoke.MethodHandle.invokeWithArguments(java.base@9-internal/MethodHandle.java:636)
at org.kohsuke.stapler.Function$MethodFunction.invoke(Function.java:343)
at org.kohsuke.stapler.Function.bindAndInvoke(Function.java:184)
at 
org.kohsuke.stapler.Function.bindAndInvokeAndServeResponse(Function.java:117)
at org.kohsuke.stapler.MetaClass$1.doDispatch(MetaClass.java:129)
at 
org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:715)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:845)
at org.kohsuke.stapler.MetaClass$5.doDispatch(MetaClass.java:248)
at 
org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:58)
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:715)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:845)
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:649)
at org.kohsuke.stapler.Stapler.service(Stapler.java:238)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
at 
org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:812)
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1669)
at 
hudson.util.PluginServletFilter$1.doFilter(PluginServletFilter.java:135)
at 
hudson.util.PluginServletFilter.doFilter(PluginServletFilter.java:138)
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)
at hudson.security.csrf.CrumbFilter.doFilter(CrumbFilter.java:80)
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)
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 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
org.acegisecurity.ui.rememberme.RememberMeProcessingFilter.doFilter(RememberMeProcessingFilter.java:142)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
jenkins.security.BasicHeaderProcessor.doFilter(BasicHeaderProcessor.java:92)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)
at 
hudson.security.HttpSessionContextIntegrationFilter2.doFilter(HttpSessionContextIntegrationFilter2.java:67)
at 
hudson.security.ChainedServletFilter$1.doFilter(ChainedServletFilter.java:87)
at 
hudson.security.ChainedServletFilter.doFilter(ChainedServletFilter.java:90)
at hudson.security.HudsonFilter.doFilter(HudsonFilter.java:171)
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)
at 
org.kohsuke.stapler.compression.CompressionFilter.doFilter(CompressionFilter.java:49)
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)
at 
hudson.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:82)
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)
at 
org.kohsuke.stapler.DiagnosticThreadNameFilter.doFilter(DiagnosticThreadNameFilter.java:30)
at 
org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1652)
at 
org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:585)
at 
org.eclipse.jetty.server.handler.ScopedHandler.handl

Re: Pinning a node to a particular workspace in jenkins pipeline?

2017-09-05 Thread Craig Silverstein
Thanks for that link -- that was very helpful!

Here's a snippet from it:
```

EDIT: As pointed out by @amuniz, you have to stash/unstash the contents of 
the workspace, as different nodes respectively workspace directories might 
be allocated for the two node steps.
```
so that's another approach to take.

craig

On Tuesday, September 5, 2017 at 1:21:27 PM UTC-7, ok999 wrote:
>
> i have ran into this in the past, but we manage to solve this by assigning 
> a workspace for each build. there is a dsl -  ws(). 
>
> Another thing regarding the executor while waiting for user input, use the 
> input(), outside of node{}.
>
>
> https://stackoverflow.com/questions/37831386/jenkins-pipeline-input-step-blocks-executor
>  
>
>
>
>
>
> On Tue, Sep 5, 2017 at 2:14 PM, Craig Silverstein  > wrote:
>
>> I have a jenkins pipeline script that does something like this:
>> ```
>> node('master') { do_stuff(params.FOO); }
>> prompt "Look good?"
>> node('master') { do_more_stuff(); }
>> ```
>>
>> `do_more_stuff()` depends on workspace-changes made by `do_stuff()` 
>> (files created, repos synced, etc).
>>
>> This worked fine when only one job could run at a time, but we recently 
>> changed it so you could run two jobs concurrently, and now have a problem 
>> that a single job could use different workspaces for `do_stuff` and 
>> `do_more_stuff`.  That is, job A could use workspace@1 for do_stuff but 
>> workspace@2 for do_more_stuff, if job B was using workspace@1 at the time.  
>> This causes the job to behave badly since the workspace isn't set up 
>> properly for `do_more_stuff`.
>>
>> I could solve this by doing
>> ```
>> nost('master') {
>> do_stuff(...);
>> prompt ...
>> do_more_stuff(...);
>> }
>> ```
>> but I'm trying to free up the executor while waiting for the prompt to be 
>> executed (it could be a while).
>>
>> Are there any other ways to solve this problem?  What are the best 
>> practices here?  I feel I must be missing something in how `node` is 
>> supposed to be used.
>>
>> craig
>>
>> -- 
>> 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 .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/jenkinsci-users/0cc87af6-82e8-4e17-9398-1fa93e9a684c%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Regards
> nirish okram
>

-- 
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/72328768-8e33-47c0-9cf0-d1c9d20223bd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Pinning a node to a particular workspace in jenkins pipeline?

2017-09-05 Thread niristotle okram
i have ran into this in the past, but we manage to solve this by assigning
a workspace for each build. there is a dsl -  ws().

Another thing regarding the executor while waiting for user input, use the
input(), outside of node{}.

https://stackoverflow.com/questions/37831386/jenkins-pipeline-input-step-blocks-executor






On Tue, Sep 5, 2017 at 2:14 PM, Craig Silverstein 
wrote:

> I have a jenkins pipeline script that does something like this:
> ```
> node('master') { do_stuff(params.FOO); }
> prompt "Look good?"
> node('master') { do_more_stuff(); }
> ```
>
> `do_more_stuff()` depends on workspace-changes made by `do_stuff()` (files
> created, repos synced, etc).
>
> This worked fine when only one job could run at a time, but we recently
> changed it so you could run two jobs concurrently, and now have a problem
> that a single job could use different workspaces for `do_stuff` and
> `do_more_stuff`.  That is, job A could use workspace@1 for do_stuff but
> workspace@2 for do_more_stuff, if job B was using workspace@1 at the
> time.  This causes the job to behave badly since the workspace isn't set up
> properly for `do_more_stuff`.
>
> I could solve this by doing
> ```
> nost('master') {
> do_stuff(...);
> prompt ...
> do_more_stuff(...);
> }
> ```
> but I'm trying to free up the executor while waiting for the prompt to be
> executed (it could be a while).
>
> Are there any other ways to solve this problem?  What are the best
> practices here?  I feel I must be missing something in how `node` is
> supposed to be used.
>
> craig
>
> --
> 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/0cc87af6-82e8-4e17-9398-1fa93e9a684c%40googlegroups.
> com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Regards
nirish okram

-- 
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/CAPzcO4h07OfOMSxG8dW8U2dBXYVRB_K3_egVazygb8%3DRntSdSw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


XUnitPublisher display ALL tests including passed tests

2017-09-05 Thread red 888
This is how I'm using this plugin in my jenkinsfile to read MSTest trx 
files:
 

> step([$class: 'WsCleanup'])


step([$class : 'XUnitPublisher',
> testTimeMargin: '3000',
> thresholdMode: 1,
> thresholds: [
> [$class: 'FailedThreshold', failureNewThreshold: '', 
> failureThreshold:'2', unstableNewThreshold: '', unstableThreshold: '']
> ],
> tools : [[$class: 'MSTestJunitHudsonTestType',
> deleteOutputFiles: true,
> failIfNotNew: false,
> pattern: "\\TestResults\\*.trx",
> skipNoTestFiles: false,
> stopProcessingIfError: true
> ]]
> ])


This seems to generate a junitResult.xml that only includes failed tests 
and fixed test (tests that previously failed) and new tests. Generally this 
is great and should be what you want to see, but I also want to see ALL 
tests includes ones that passed. Is there a settings for 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/78c1aca8-e100-487f-9b56-fa98f79d8b17%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Pinning a node to a particular workspace in jenkins pipeline?

2017-09-05 Thread Craig Silverstein
I have a jenkins pipeline script that does something like this:
```
node('master') { do_stuff(params.FOO); }
prompt "Look good?"
node('master') { do_more_stuff(); }
```

`do_more_stuff()` depends on workspace-changes made by `do_stuff()` (files 
created, repos synced, etc).

This worked fine when only one job could run at a time, but we recently 
changed it so you could run two jobs concurrently, and now have a problem 
that a single job could use different workspaces for `do_stuff` and 
`do_more_stuff`.  That is, job A could use workspace@1 for do_stuff but 
workspace@2 for do_more_stuff, if job B was using workspace@1 at the time.  
This causes the job to behave badly since the workspace isn't set up 
properly for `do_more_stuff`.

I could solve this by doing
```
nost('master') {
do_stuff(...);
prompt ...
do_more_stuff(...);
}
```
but I'm trying to free up the executor while waiting for the prompt to be 
executed (it could be a while).

Are there any other ways to solve this problem?  What are the best 
practices here?  I feel I must be missing something in how `node` is 
supposed to be used.

craig

-- 
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/0cc87af6-82e8-4e17-9398-1fa93e9a684c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How can I tail the console output for a failed pipeline build?

2017-09-05 Thread Dallas Clement
Answering my own question in case it may help someone.  I put this in my 
"failure" post action section of my Jenkinsfile to extract the last 100 
lines of the build log.  I also filtered out the post actions output and 
the leading rubbish on each line of the actual build log.

jobName = "${env.JOB_NAME}"
tokens = jobName.split('/')
jobDir = tokens[0]
logFile = 
"${env.JENKINS_HOME}/jobs/${jobDir}/branches/${env.JOB_BASE_NAME}/builds/${env.BUILD_NUMBER}/log"
command = $/tail -100 ${logFile} | sed '/Post Actions/q' | sed 
'/\[Pipeline\]/d' | sed -e 's/^.*\[0m//g'/$
logSnippet = sh(script: command, returnStdout: true)


On Monday, September 4, 2017 at 10:27:52 AM UTC-5, Dallas Clement wrote:
>
> I've done all that.  What I want is to extract the last portion of the 
> actual console output for a build that has failed so that I can embed it in 
> the body of an email notification to indicate where the build has failed. 
>  I'm trying to avoid attaching the whole build log.  I've been able to 
> locate the build log, but I don't know how to extract the raw console 
> output from it.
>
> On Monday, September 4, 2017 at 6:14:56 AM UTC-5, xwyxw wrote:
>>
>> Blueoncean, split your script in  functions and  stages and you will get 
>> a good understanding of what is actually happening on every stage (clone, 
>> build, fail, etc). Also using groovy and try/catch will help too
>>
>> On Friday, September 1, 2017 at 2:25:05 AM UTC+10, Dallas Clement wrote:
>>>
>>> I am working with multibranch pipeline builds and I want to be able to 
>>> tail the end of the console output to include in build failure email 
>>> notifications.  I can see where the log file is located in the filesystem 
>>> under 
>>>
>>> /var/lib/jenkins/jobs//branches/>> branch>/builds/5
>>>
>>> The build log appears to have the console output embedded in it.  But 
>>> there appears to be a whole lot more also.  How can I extract / render just 
>>> the console output?
>>>
>>>
>>>

-- 
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/1baad50f-780d-4296-96cb-030a26683fca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Blue Ocean Repository permissions within Jenkins Github organization: can't seem to edit

2017-09-05 Thread Cliff Meyers
Hi Nelson,

It sounds like you are running into some of the limitations of GitHub
organizations that others have faced as well. In the past couple of weeks,
the Blue Ocean team has landed some changes so that new GitHub-based
pipelines are created as Multibranch Pipelines instead. Once this ships,
any new pipeline you create should be able to be configured in a much more
flexible way. If you're curious, the PR that included these changes is
here: https://github.com/jenkinsci/blueocean-plugin/pull/1336

These changes will be available in the next beta release of Blue Ocean
which should ship in a week or two to the experimental update center. Or
you can wait for the production 1.3 release, although I can't say with
certainty when that will ship.

In the mean time, if you want to control which repositories in your GitHub
org are built, in the Classic UI you can click on the "Configure" link on
the left and then find the "Filter by name (with regular expression)"
section. That regex should reflect all of the repository names you selected
via the Blue Ocean "New Pipeline" UI. If you remove entries and press
"Save" it will add or remove the child pipelines accordingly.

If you have more questions feel free to post here and I'll do my best to
help.

-Cliff


On Sun, Sep 3, 2017 at 9:55 PM, Nelson Liu 
wrote:

> Hi!
> I've been trying out BlueOcean for managing my CI projects---it's great!
> I'm able to create a new pipeline and specify that I want to pull code from
> a repo in my Github organization, and the builds run beautifully. However,
> it doesn't seem like I (as an administrator user on the Jenkins instance)
> have any sort of permissions on the repository projects.
>
> For example, I'm able to modify the settings of and delete the Github
> organization folder created by BlueOcean, but I can't seem to modify the
> settings of or delete the repositories that I've added from the
> organization. I'm also unable to modify the configuration of the individual
> branches in the repository.
>
> Security is enabled, and I'm using Jenkins' own database. In terms of
> authorization, I've specified that logged-in users can do anything and I've
> verified that I'm actually logged in when I try the above.
>
> Any pointers on what I could be doing wrong, or is it intended that users
> are not able to modify the configuration of individual repositories /
> branches?
>
> Thanks!
> Nelson Liu
>
> --
> 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/39df2145-eb5c-45a0-9340-085c1649c7ae%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/CAFm%3D0hez2JmfZ%3D%2BAgmhXAvDvQxAvRARGmEq11OPivi_MAFp9Sw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Getting the build description from a URL

2017-09-05 Thread graya2
LOL. I ran across my own post from 5 years ago.  I can answer it myself now:

from jenkinsapi.jenkins import Jenkins
import jenkinsapi
J = Jenkins('http://myjenkins:8080/', username='user', password='password')
job = J['my-job']
b = job.get_build(383)
b.get_description()



--
Sent from: http://jenkins-ci.361315.n4.nabble.com/Jenkins-users-f361316.html

-- 
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/1504630663763-0.post%40n4.nabble.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins and Docker

2017-09-05 Thread nicolas de loof
The chapter you refer to is about running Jenkins as a docker container. If
you used another installation process, just ignore
That being said, docker is a nice complement to jenkins, and is used in
various samples in documentation, including Declarative Pipeline. So I
recommend you install it so you're not limited in your newcomer experience
(install docker4mac/windows, it's just about few clicks)

2017-09-05 16:21 GMT+02:00 Tibbs :

> I'm sorry if this has been asked before but I am new to both Jenkins and
> virtualised containers and couldn't find something related to my question.
>
> Can anyone tell me if I need Docker in order to use Jenkins? I am slightly
> puzzled by Jenkins documentation saying the you need to have Docker
> *properly* installed ( https://jenkins.io/doc/book/
> getting-started/installing/#docker ).
>
> I installed Jenkins on my local pc without Docker. How would Docker help
> here? Is it really needed?
>
> 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.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/jenkinsci-users/a5e3e8f0-e993-4844-b1a5-0a799e4bff35%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/CANMVJzmbfZ%3DUgB%3D9bCCP5W8ak0i4pe4wF1W_83PHG%3DidvP%3DsSw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins and Docker

2017-09-05 Thread Tibbs
I'm sorry if this has been asked before but I am new to both Jenkins and 
virtualised containers and couldn't find something related to my question.

Can anyone tell me if I need Docker in order to use Jenkins? I am slightly 
puzzled by Jenkins documentation saying the you need to have Docker 
*properly* installed ( 
https://jenkins.io/doc/book/getting-started/installing/#docker 
).

I installed Jenkins on my local pc without Docker. How would Docker help 
here? Is it really needed?

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/a5e3e8f0-e993-4844-b1a5-0a799e4bff35%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: PTC plugin: Java with Integrity older than 10.5

2017-09-05 Thread rampaulj
Hello Leon,

I am  trying to configure MKS as SCM system in Jenkins.

Can you please provide some information on this. I am completely new to 
Jenkins.

Regards,
Rampaul

On Wednesday, December 9, 2015 at 3:39:56 PM UTC+5:30, Leon Leon wrote:
>
> Hello everyone,
>
> I did read that Java versions after 7u40 are not compatible with Integrity 
> older than 10.5
>
> And I have two questions about it:
>
> 1) What is the reason of this issue ? Is this related to the Integrity 
> client or to the PTC plugin ?
>
> 2) We have now the following (everything is working fine.):
> - MKS Integrity Client 2009 
> - Java 7u15
> - The special PTC plugin version 1.31-4.10.9049 
>
> But what do we have to do if Java is updated to the newest version ? Is it 
> possible to extend the Plugin to make the system still work ?
>
> Any help will be very appreciated.
> Thank you in advance.
>
>

-- 
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/467df5f1-a024-41e1-9260-745bc409204e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Wrong Boolean Conditioned Token

2017-09-05 Thread Slide
I think when using File Matches, you need to specify an ant-style file
pattern like you were trying before. Try putting this in the box (verbatim):

Includes "**/test_resultados_miniprueba.csv"

If you click on the help icon (question mark) next to the fields, they can
give you valuable information on how to use that field.



On Tue, Sep 5, 2017 at 4:27 AM Victor Martinez <
victormartinezru...@gmail.com> wrote:

> Can you confirm whether it does exist under the folder "Workspace"? If you
> add a shell script step before the conditional step which runs "ls -l"
> what's the output?
>
> 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/6e64b6b6-eabd-4704-9f07-2c0747334864%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/CAPiUgVe0ZLGfXckcu8Bwcb%2BM%3DOXv1n7SLP9JYRsyn6nW2qbnXw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Setting PTC (MKS) Integrity environment variables through Jenkins configuration

2017-09-05 Thread rampaulj
Hello Ganesh,

I am also trying to do the same configuration of MKS plugin in Jenkins.

I am new to Jenkins, can you please help me by providing some inputs. 


Regards,
Rampaul

On Wednesday, June 15, 2016 at 5:21:17 PM UTC+5:30, Ganesh Kumbhar wrote:
>
> Hello Everyone,
>
> I am new to Jenkins & don't really know much about it, have one doubt.
>
> Does Jenkins works sequentially as per the configuration ? Might be you 
> wouldn't get any clear idea about doubt, So here we go with specific issue 
> of mine : 
>
> So I have attached a snapshot of my job configuration as below, I have 
> old PTC (MKS) integrity client installed on my machine but I want to use 
> new, latest client without un-installing old one.
>
>
> 
> So I am passing environment variables through Jenkins for  latest MKS . 
>
> Now, The problem is, as we see in configuration, integrity connection 
> comes first & then injecting environment varaibles so it's not running as 
> expected and giving error as below : 
>
>
> 
>
>
> Kindly tell me how can I proceed in this case ? 
>
> Any help is really Appreciated.
> Thank You Very much in Advance!
> Ganesh. 
>
>

-- 
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/23566082-06ed-4dd9-8dce-6f78f2059fe1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: %PATH% mismatch - from job to actual path | for the C:\Git\cmd;C:\Git\bin;C:\Git\usr\bin;

2017-09-05 Thread Victor Martinez
off the top of my head, did you restart the Jenkins service to pick up the 
new environment variable changes?

-- 
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/5adc6e3e-c128-4677-938b-2b2dd693e380%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


%PATH% mismatch - from job to actual path | for the C:\Git\cmd;C:\Git\bin;C:\Git\usr\bin;

2017-09-05 Thread LnT
Hi ,

in my Jenkins master machine - out of the command prompt is like below




*C:\Documents and Settings\adm_jenkins>pathPATH=C:\Documents and 
Settings\All Users\Application 
Data\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\Python27;C:\Python27\Scripts;C:\Python27\Lib;C:\apache-maven-3.3.3\bin;;C:\Git\cmd;C:\Git\bin;C:\Git\usr\bin;*


Where as same command is executed in Jenkins - console output is 

*Started by user **LnT* 







*Building in workspace C:\Documents and 
Settings\jenkins\.jenkins\workspace\Setup[Setup] $ cmd /c call 
C:\DOCUME~1\ADM_JE~1\LOCALS~1\Temp\jenkins6225536741578519895.batC:\Documents 
and Settings\jenkins\.jenkins\workspace\Setup>pathPATH=C:\Documents and 
Settings\All Users\Application 
Data\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\msysgit\msysgit\cmd;C:\msysgit\msysgit\bin;c:\Python27;C:\Python27\Scripts;C:\Python27\Lib;C:\apache-maven-3.3.3\bin;C:\msysgit\msysgit\bin;C:\Documents
 
and Settings\adm_jenkins\.jenkins\workspace\Setup>exit 0 Finished: SUCCESS*


*Issue is : I have updated **C:\Git\cmd;C:\Git\bin;C:\Git\usr\bin; in 
machine %PATH% this is not being taken from Jenkins job*

*Please help *

*Regards,*
*LnT*

-- 
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/3e1ed391-3d34-4b92-9960-cabbe52fea39%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Wrong Boolean Conditioned Token

2017-09-05 Thread Victor Martinez
Can you confirm whether it does exist under the folder "Workspace"? If you 
add a shell script step before the conditional step which runs "ls -l" 
what's the output?

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/6e64b6b6-eabd-4704-9f07-2c0747334864%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Wrong Boolean Conditioned Token

2017-09-05 Thread Ana MB
I've tried too with "Files Match" Condition and it does the same (nothing):




It returns:


[INFO] 

[INFO] BUILD SUCCESS

[INFO] 

[INFO] Total time: 58.216 s

[INFO] Finished at: 2017-09-05T13:13:38+02:00

[INFO] Final Memory: 17M/56M

[INFO] 

Files match condition: Matched [0] files

Run condition [Files match] preventing perform for step [Execute shell]

Finished: SUCCESS


What is happening? The file exists in my workspace

Thanks so much!!!


El martes, 5 de septiembre de 2017, 13:08:25 (UTC+2), Ana MB escribió:
>
> Hi guys!
>
> I don't know how to put a conditioned token to evaluate if a file exists 
> with the Conditional Step Plugin in Jenkins:
>
>
> 
> This returns the following console output:
>
> [INFO] 
> 
> [INFO] BUILD SUCCESS
> [INFO] 
> 
> [INFO] Total time: 54.479 s
> [INFO] Finished at: 2017-09-05T12:57:09+02:00
> [INFO] Final Memory: 16M/56M
> [INFO] 
> 
> Exception caught evaluating condition: 
> [org.jenkinsci.plugins.tokenmacro.MacroEvaluationException: Unrecognized 
> macro 'test_resultados_miniprueba' in '$test_resultados_miniprueba'], action 
> = [Don't run]
> Finished: SUCCESS
>
>
> What is the error in the condition token?
>
>
> Thanks so much for your time
>
>

-- 
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/ec5834e5-b5ac-4599-a94a-ea6b986a4f9b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Multiple commands

2017-09-05 Thread Victor Martinez
Hey,

  There are some examples about running batch mysql scripts in the below 
stackoverflow link:

 https://stackoverflow.com/questions/8830773/run-mysql-script-by-batch-script

I hope it helps

-- 
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/dfec97b4-d32b-4406-ab83-99d6d6984eff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Support needed for Jenkins Server Specification

2017-09-05 Thread MANIKANDAN BABU
Hi Artur,

Thanks for your suggestion.

Manikandan

On Friday, September 1, 2017 at 6:43:21 PM UTC+5:30, Artur Szostak wrote:
>
> I think the biggest dependency will be on the number and complexity of 
> jobs. 
> My experience has shown more or less a linear increase in the amount of 
> Memory and I/O performance needed as a function of the number of jobs. One 
> has to count the sub-jobs if dealing with a MatrixJob etc. 
> As for disk space, ignoring I/O performance, just thinking about the size 
> of the volume, that really depends on how much history you want to keep and 
> how big the build logs and artifacts get per build. 
>
> Best regards. 
>
> Artur 
>  
> From: jenkins...@googlegroups.com  <
> jenkins...@googlegroups.com > on behalf of MANIKANDAN BABU <
> mkmecha...@gmail.com > 
> Sent: 01 September 2017 10:49:54 
> To: Jenkins Users 
> Subject: Support needed for Jenkins Server Specification 
>
> Hi, 
>
> We are in process of implementing the Jenkins. 
>
>  Recommendation needed  for Jenkins server specification handling 200 
> slaves, with ~100 build steps. 
>
>
> Thanks in Advance 
> Manikandan 
>
>
>
>
>
> -- 
> 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  jenkinsci-users+unsubscr...@googlegroups.com >. 
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/74081fa0-dc76-4f04-a9a3-17f2d611406d%40googlegroups.com
> <
> https://groups.google.com/d/msgid/jenkinsci-users/74081fa0-dc76-4f04-a9a3-17f2d611406d%40googlegroups.com?utm_medium=email&utm_source=footer>.
>  
>
> 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/deb0f196-460e-4889-a834-14bc17e88c32%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: promoting with jenkins file

2017-09-05 Thread Victor Martinez
Hi,

  If you meant the promotion based on 
https://wiki.jenkins.io/display/JENKINS/Promoted+Builds+Plugin then there 
is already an open ticket: 
https://issues.jenkins-ci.org/browse/JENKINS-36089 

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/23273f30-737c-46e8-9468-246673236760%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Broken Shell in Jenkins

2017-09-05 Thread Ana MB
This topic can be closed. 
I open a new one with the real problem.


El martes, 5 de septiembre de 2017, 10:13:56 (UTC+2), Ana MB escribió:
>
> Hi guys!
>
> I'm using Conditional Steps Plugin in Jenkins and I want to execute 
> commands in the Shell, but it seems not to work. I show you my case: 
>
>
> 
> I try to execute a simply "ECHO HI WORLD", and the console returns the 
> following:
>
> [INFO] 
> 
>
> [INFO] BUILD SUCCESS
>
> [INFO] 
> 
>
> [INFO] Total time: 58.289 s
>
> [INFO] Finished at: 2017-09-05T09:59:49+02:00
>
> [INFO] Final Memory: 17M/56M
>
> [INFO] 
> 
>
> [File exists] check if file exists 
> [/Researches/PruebaMail/test-output/test_resultados_miniprueba.csv]
>
> Run condition [File exists] preventing perform for step [Execute shell]
>
> Finished: SUCCESS
>
>
> And nothing happens, "HI WORLD" doesn't appear anywhere... why??
>
> I'm turning crazy...
>
> Thanks so much for your time... 
>

-- 
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/a0455ece-cc76-43a2-a50a-583b2a636c85%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Wrong Boolean Conditioned Token

2017-09-05 Thread Ana MB
Hi guys!

I don't know how to put a conditioned token to evaluate if a file exists 
with the Conditional Step Plugin in Jenkins:


This returns the following console output:

[INFO] 
[INFO] BUILD SUCCESS
[INFO] 
[INFO] Total time: 54.479 s
[INFO] Finished at: 2017-09-05T12:57:09+02:00
[INFO] Final Memory: 16M/56M
[INFO] 
Exception caught evaluating condition: 
[org.jenkinsci.plugins.tokenmacro.MacroEvaluationException: Unrecognized macro 
'test_resultados_miniprueba' in '$test_resultados_miniprueba'], action = [Don't 
run]
Finished: SUCCESS


What is the error in the condition token?


Thanks so much for your time

-- 
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/11f606b2-02de-4411-99f7-ca22ec6175a1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Broken Shell in Jenkins

2017-09-05 Thread Ana MB
I've tried with "Boolean" Condition and it's not working yet... I don't 
know if the token is right:




It returns this console output:


[INFO] 

[INFO] BUILD SUCCESS

[INFO] 

[INFO] Total time: 54.479 s

[INFO] Finished at: 2017-09-05T12:57:09+02:00

[INFO] Final Memory: 16M/56M

[INFO] 

Exception caught evaluating condition: 
[org.jenkinsci.plugins.tokenmacro.MacroEvaluationException: Unrecognized macro 
'test_resultados_miniprueba' in '$test_resultados_miniprueba'], action = [Don't 
run]

Finished: SUCCESS



What is the error in the condition token?

Thanks so much for your time


El martes, 5 de septiembre de 2017, 12:35:27 (UTC+2), Björn Pedersen 
escribió:
>
> Hi,
>
> File exists does not seem to do  ant-style expansion, if I look  at the 
> docs. Either specify the correct relative path, or use Files Match.
>
> Björn
>
> Am Dienstag, 5. September 2017 11:45:43 UTC+2 schrieb Ana MB:
>>
>> Ok the problem is with the "File exists" Condition, because I've put 
>> "Always" and I get the message "HI WORLD":
>>
>> [INFO] 
>> 
>>
>> [INFO] BUILD SUCCESS
>>
>> [INFO] 
>> 
>>
>> [INFO] Total time: 53.709 s
>>
>> [INFO] Finished at: 2017-09-05T11:32:57+02:00
>>
>> [INFO] Final Memory: 17M/56M
>>
>> [INFO] 
>> 
>>
>> Run condition [Always] enabling perform for step [Execute shell]
>>
>> [workspace] $ /bin/sh -xe /tmp/jenkins4771372472076695799.sh
>>
>> + echo HI WORLD
>>
>> HI WORLD
>>
>> Finished: SUCCESS
>>
>>
>> What could be happening with this condition "File exists"?
>>
>> Thanks so much!!!
>>
>>
>> El martes, 5 de septiembre de 2017, 10:13:56 (UTC+2), Ana MB escribió:
>>>
>>> Hi guys!
>>>
>>> I'm using Conditional Steps Plugin in Jenkins and I want to execute 
>>> commands in the Shell, but it seems not to work. I show you my case: 
>>>
>>>
>>> 
>>> I try to execute a simply "ECHO HI WORLD", and the console returns the 
>>> following:
>>>
>>> [INFO] 
>>> 
>>>
>>> [INFO] BUILD SUCCESS
>>>
>>> [INFO] 
>>> 
>>>
>>> [INFO] Total time: 58.289 s
>>>
>>> [INFO] Finished at: 2017-09-05T09:59:49+02:00
>>>
>>> [INFO] Final Memory: 17M/56M
>>>
>>> [INFO] 
>>> 
>>>
>>> [File exists] check if file exists 
>>> [/Researches/PruebaMail/test-output/test_resultados_miniprueba.csv]
>>>
>>> Run condition [File exists] preventing perform for step [Execute shell]
>>>
>>> Finished: SUCCESS
>>>
>>>
>>> And nothing happens, "HI WORLD" doesn't appear anywhere... why??
>>>
>>> I'm turning crazy...
>>>
>>> Thanks so much for your time... 
>>>
>>

-- 
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/059a454b-7723-4ce8-9b20-d8bf22cc2534%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


JIRA plugin: add issue labels

2017-09-05 Thread Alex Vasilkov
Hi,

I'm using JIRA Plugin
 v2.4.2
and trying to add a lebel with build number to each related JIRA issue.

Changelog for version 2.2 says that it now has "Support adding labels to
updated issues".
I also checked source code and can see that adding labels is supported by
JiraIssueUpdater

.

But I can't see how I can sepcify these labels. Specifically I want to be
able to set new label based on environment parameter. Could you please
point me on how I can achive it?

Regards,
Alex Vasilkov

-- 
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/CACLi4PzRwxw%3D-76SVAdkYnvmcX%3DF-tfOOucoNeKvRYSsyUfGVQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Broken Shell in Jenkins

2017-09-05 Thread 'Björn Pedersen' via Jenkins Users
Hi,

File exists does not seem to do  ant-style expansion, if I look  at the 
docs. Either specify the correct relative path, or use Files Match.

Björn

Am Dienstag, 5. September 2017 11:45:43 UTC+2 schrieb Ana MB:
>
> Ok the problem is with the "File exists" Condition, because I've put 
> "Always" and I get the message "HI WORLD":
>
> [INFO] 
> 
>
> [INFO] BUILD SUCCESS
>
> [INFO] 
> 
>
> [INFO] Total time: 53.709 s
>
> [INFO] Finished at: 2017-09-05T11:32:57+02:00
>
> [INFO] Final Memory: 17M/56M
>
> [INFO] 
> 
>
> Run condition [Always] enabling perform for step [Execute shell]
>
> [workspace] $ /bin/sh -xe /tmp/jenkins4771372472076695799.sh
>
> + echo HI WORLD
>
> HI WORLD
>
> Finished: SUCCESS
>
>
> What could be happening with this condition "File exists"?
>
> Thanks so much!!!
>
>
> El martes, 5 de septiembre de 2017, 10:13:56 (UTC+2), Ana MB escribió:
>>
>> Hi guys!
>>
>> I'm using Conditional Steps Plugin in Jenkins and I want to execute 
>> commands in the Shell, but it seems not to work. I show you my case: 
>>
>>
>> 
>> I try to execute a simply "ECHO HI WORLD", and the console returns the 
>> following:
>>
>> [INFO] 
>> 
>>
>> [INFO] BUILD SUCCESS
>>
>> [INFO] 
>> 
>>
>> [INFO] Total time: 58.289 s
>>
>> [INFO] Finished at: 2017-09-05T09:59:49+02:00
>>
>> [INFO] Final Memory: 17M/56M
>>
>> [INFO] 
>> 
>>
>> [File exists] check if file exists 
>> [/Researches/PruebaMail/test-output/test_resultados_miniprueba.csv]
>>
>> Run condition [File exists] preventing perform for step [Execute shell]
>>
>> Finished: SUCCESS
>>
>>
>> And nothing happens, "HI WORLD" doesn't appear anywhere... why??
>>
>> I'm turning crazy...
>>
>> Thanks so much for your time... 
>>
>

-- 
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/e586ee7b-5da1-4cfe-89a6-a4df5d9b48d5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


no results in vstest.console.exe

2017-09-05 Thread mulumudy sushmita
My unit tests are being recognized but when commiting it shows no results.
I have used the following windows batch command.

C:\PROGRA~2\OpenCover\OpenCover.Console.exe -register:path64 
-target:"C:\Program Files (x86)\Microsoft Visual Studio 
14.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow\Vstest.console.exe" 
 -targetargs:"%WORKSPACE%\UnitTestPOMS\Debug\UnitTestPOMS.dll" 
/Platform:x86 /Framework:framework45 -output:"results.xml" -mergebyhash 
-skipautoprops /EnableCodeCoverage


md %WORKSPACE%\CodeCoverage
 C:\ReportGenerator\bin\ReportGenerator.exe -reports:"results.xml" 
-targetdir:%WORKSPACE%\CodeCoverage 

-- 
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/8204381c-638e-4d5f-a729-d5cc69067dfe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Broken Shell in Jenkins

2017-09-05 Thread Ana MB
Ok the problem is with the "File exists" Condition, because I've put 
"Always" and I get the message "HI WORLD":

[INFO] 

[INFO] BUILD SUCCESS

[INFO] 

[INFO] Total time: 53.709 s

[INFO] Finished at: 2017-09-05T11:32:57+02:00

[INFO] Final Memory: 17M/56M

[INFO] 

Run condition [Always] enabling perform for step [Execute shell]

[workspace] $ /bin/sh -xe /tmp/jenkins4771372472076695799.sh

+ echo HI WORLD

HI WORLD

Finished: SUCCESS


What could be happening with this condition "File exists"?

Thanks so much!!!


El martes, 5 de septiembre de 2017, 10:13:56 (UTC+2), Ana MB escribió:
>
> Hi guys!
>
> I'm using Conditional Steps Plugin in Jenkins and I want to execute 
> commands in the Shell, but it seems not to work. I show you my case: 
>
>
> 
> I try to execute a simply "ECHO HI WORLD", and the console returns the 
> following:
>
> [INFO] 
> 
>
> [INFO] BUILD SUCCESS
>
> [INFO] 
> 
>
> [INFO] Total time: 58.289 s
>
> [INFO] Finished at: 2017-09-05T09:59:49+02:00
>
> [INFO] Final Memory: 17M/56M
>
> [INFO] 
> 
>
> [File exists] check if file exists 
> [/Researches/PruebaMail/test-output/test_resultados_miniprueba.csv]
>
> Run condition [File exists] preventing perform for step [Execute shell]
>
> Finished: SUCCESS
>
>
> And nothing happens, "HI WORLD" doesn't appear anywhere... why??
>
> I'm turning crazy...
>
> Thanks so much for your time... 
>

-- 
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/516a81b1-911a-4fb1-8370-60c1c619903a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


promoting with jenkins file

2017-09-05 Thread ctr0306
Hi,

Any one has promoted the artifacts from DEV --> SIT --> UAT --> PROD using 
jenkins file
if so please provide the guidelines

Thanks
CTR

-- 
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/eb5e0f33-d9a2-47d9-956c-5c8975bf576f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: MSTest plugin poll

2017-09-05 Thread Chris B
Hi,

there seems to be a problem with the MSTest Plugin in a none-pipeline job:

Results file:  D:\Workspace\PRODUCT\trunk\testresult.trx
Test Settings: Default Test Settings
[MSTEST-PLUGIN] INFO processing test results in file(s) **/*.trx
[MSTEST-PLUGIN] INFO processing report file: 
D:\Workspace\PRODUCT\trunk\testresult.trx
ERROR: Build step failed with exception
java.lang.NullPointerException
at hudson.plugins.mstest.FileOperator.safeDelete(FileOperator.java:10)
at 
hudson.plugins.mstest.MSTestReportConverter.transform(MSTestReportConverter.java:157)
at 
hudson.plugins.mstest.MSTestReportConverter.transform(MSTestReportConverter.java:74)
at 
hudson.plugins.mstest.MSTestTransformer.invoke(MSTestTransformer.java:70)
at 
hudson.plugins.mstest.MSTestTransformer.invoke(MSTestTransformer.java:23)
at hudson.FilePath$FileCallableWrapper.call(FilePath.java:2750)
at hudson.remoting.UserRequest.perform(UserRequest.java:121)
at hudson.remoting.UserRequest.perform(UserRequest.java:49)
at hudson.remoting.Request$2.run(Request.java:325)
at 
hudson.remoting.InterceptingExecutorService$1.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at hudson.remoting.Engine$1$1.run(Engine.java:69)
at java.lang.Thread.run(Unknown Source)



Configuration was unchanged after upgrade from 0.19 to 0.20 alpha. 

Chris

Am Mittwoch, 30. August 2017 21:47:36 UTC+2 schrieb Ivo Bellin Salarin:
>
> An alpha version is available for everyone on the jenkins-ci.org 
> repository. If you're willing to get it, follow the instructions available 
> on:
> https://jenkins.io/blog/2013/09/23/experimental-plugins-update-center/
>
> Thanks everybody,
> Ivo
>
> Le lun. 28 août 2017 à 23:29, > a écrit :
>
>> The new setup is more flexible and looks fine for me.
>>
>> Op donderdag 24 augustus 2017 20:59:35 UTC+2 schreef Ivo Bellin Salarin:
>>
>>> Hello everyone,
>>>
>>> I have implemented a couple of blueprints (i.e. modification requests) 
>>> of the MSTest plugin for Jenkins. Since I haven't any other way to contact 
>>> my users, I will try to use this mailing list to describe the changes and 
>>> have your opinion.
>>>
>>> First, the possibility to use the MSTest plugin in a pipeline 
>>> (jenkinsfile). The users will be able to call the plugin using the 'mstest' 
>>> symbol.
>>>
>>> Second. Because of the changes apported to implement the pipeline, and 
>>> because of several users request, I have dropped the dependency upon the 
>>> Emma plugin. Versions 0.12 through 0.19 were showing coverage trends (or a 
>>> bad looking picture if the tests weren't computing any coverage). These 
>>> versions were 1) discovering code coverage reports linked by the test 
>>> report 2) converting it to the Emma format 3) adding a Emma report to the 
>>> build.
>>> Starting from the 0.20 version, the plugin will perform the steps 1 and 
>>> 2, but it won't do the step 3. In order to show the coverage report/trends, 
>>> you will have to add the Emma plugin (or the jacoco plugin) and tell it to 
>>> find for the reports whose name matches '**/emma/coverage.xml'.
>>>
>>> Dear users, what do you think about these changes? I will wait 2 weeks 
>>> before releasing the 0.20 version.
>>>
>>> BTW, someone has tested the 0.20 version, but only partially. I have 
>>> executed all the unit tests in my possession (and I have written some more 
>>> for the occasion). But the number of TRX/coverage reports in my possession 
>>> is very limited. So, if anybody can help testing the 0.20 version, please 
>>> send me a private message.
>>>
>>> Many thanks for your attention,
>>> Have a great day,
>>> Ivo
>>>
>> -- 
>> 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 .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/jenkinsci-users/8d148b28-dd7e-4e19-b2c1-45b0e0b33776%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/b8decf52-4792-4f3c-bdfc-131ca5f4e1b8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Broken Shell in Jenkins

2017-09-05 Thread Ana MB
Hi guys!

I'm using Conditional Steps Plugin in Jenkins and I want to execute 
commands in the Shell, but it seems not to work. I show you my case: 


I try to execute a simply "ECHO HI WORLD", and the console returns the 
following:

[INFO] 

[INFO] BUILD SUCCESS

[INFO] 

[INFO] Total time: 58.289 s

[INFO] Finished at: 2017-09-05T09:59:49+02:00

[INFO] Final Memory: 17M/56M

[INFO] 

[File exists] check if file exists 
[/Researches/PruebaMail/test-output/test_resultados_miniprueba.csv]

Run condition [File exists] preventing perform for step [Execute shell]

Finished: SUCCESS


And nothing happens, "HI WORLD" doesn't appear anywhere... why??

I'm turning crazy...

Thanks so much for your time... 

-- 
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/05c076f8-b383-4a0f-b3ef-87e7c31e7056%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Multiple commands

2017-09-05 Thread harvey
I am sorry but neither removing helped me solve the problem. I follow the 
following steps in CMD normally,

cd "C:\Program Files (x86)\MySQL\MySQL Server 5.5\bin\ 
mysql -u root -p 
*
CREATE DATABASE xyz;

It works great when done manually but not with Jenkins. In jenkins it is 
not taking the password , the build is  running continuously. Any guidance 
is appreciated.

Regards,
Harvey



On Monday, September 4, 2017 at 4:13:05 PM UTC+2, Daniel Butler wrote:
>
> Remove the starting and finishing triple quote marks (they’re only needed 
> in a pipeline script)
>
>  
>
> Note you’ll need to provide the username and password as part of the 
> command line to MySQL; you’re best to use the Credentials Binding plugin 
> and use a ‘Username and Password (Separated)’ binding. Then you can refer 
> to them in the batch script as regular environment variables.
>
>  
>
> Regards,
>
> Daniel.
>
>  
>
> *From: *harvey 
> *Sent: *04 September 2017 14:01
> *To: *Jenkins Users 
> *Subject: *Re: Multiple commands
>
>  
>
> Hi Daniel,
>
> Thank you for your reply. I am using a freestyle job and unfortunately the 
> script didnot work in my case:
>
> I choosed execute windows batch command and typed the following:
>
> """ cd c:\
> \mysql --username --password -e "DROP DATABASE xyz; CREATE DATABASE 
> xyz;"
> """
> Is there something which am missing ?
>
> Regards,
> Harvey
>
> On Monday, September 4, 2017 at 1:43:29 PM UTC+2, Daniel Butler wrote:
>
>  
>
> Are you using freestyle jobs or pipeline?
>
> With Pipeline:
>
>
> When you use a bat/sh step you’re providing a batch or shell script rather 
> than virtual input into a console.
>
>  
>
> In your case you’d need to do something like:
> bat """
>
> cd c:\...
>
> ...\mysql --user %user% --password %password% -e "DROP DATABASE xyz; 
> CREATE DATABASE xyz;"
>
> """
>
>  
>
> Freestyle you’d use the same text between the triple quotes in a Batch 
> step.
>
>  
>
> Regards,
>
> Daniel.
>
>  
>
> *From: *harvey
> *Sent: *04 September 2017 12:04
> *To: *Jenkins Users
> *Subject: *Multiple commands
>
>  
>
> Hi,
>
> I am a new user to Jenkins. I just started working with Jenkins. I am 
> learning to automate using Jenkins. But I dont find like how to pass two 
> commands? For example, if I need to run a database creation using MySQL I 
> should do the following:
>
> cd c:\...\MySQL 5.5 server\bin\mysql.exe
> password: 
> drop database xyz;
> create database xyz;
>
> Actually there is a wait between the execution of the commands, so how do 
> i do it? Please if someone could help ?
>
> Regards,
> Harvey
>
> -- 
> 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.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/02c8c0a5-190d-4c65-b1b5-bf29ad352759%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-use...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/040e2219-39ea-4490-b290-1b559eabb935%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/0742247a-9147-4ba1-b488-7c02896cc39e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.