Regarding bump up development version and release version issue

2016-11-14 Thread Victor Martinez
Please explain how you configured, versions,and so on. 

There are plenty of reasons...

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/9fa03e84-da42-46b0-bcbe-383be0f8c58d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Tmp+Cleaner+Plugin

2016-11-14 Thread Patricio Iglesias
Hi there,

maybe im a bit out of the point, but can anybody tell me how to configure 
this plugin?

The only thing i can find is: "TODO : configure it with the ui."

But i am unable to find any options in jenkins user interface. Any ideas?

Thank you very much 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/a38deda3-2913-46f1-873d-92f878613032%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re-8: Copy files from remote Jenkins workspace

2016-11-14 Thread Jovan Jevric
Workspace per definition is space you gave jenkins to store all the builds 
executed on master. If you run 50 Jobs from JobA all builds including artefacts 
will be stored on master. So you'll run out of memory defenitelly if you don't 
care about housekeepings. Local workspace you mean is workspace acquired on 
jenkins slave for a job execution. Keep on working on your basics dude;-)




Don't archive artefacts and get the artefacts from slave on your own. On that 
way none artefacts are put on your master machine. But keep in mind, that none 
artefacts can be accessed in your job history if not archived.


Cheers




Original Message processed by david®  
Re: Re-6: Copy files from remote Jenkins workspace (14-Nov-2016 12:41)
From:   Eran Yanay
To:jenkinsci-users@googlegroups.com



My workspace is already very slim, because I override it for every build. 
So I dont really have any housekeeping, as each build only stores information 
like console output, and since all my work is done inside the workspace, I 
never go out of space.
If I now make artifacts of my workspace for every build, Is it possible to 
remove only the artifact once its downloaded to my master node?



On Mon, Nov 14, 2016 at 12:14 PM, Jovan Jevric  wrote:


You'll have to do some housekeeping anywayOtherwise you'll run out of 
memory very fast. 
By archiving all the artefacts generated(mainly needed for release steps or 
similar) on your own you'll be able to keep your jenkins workspace very slim. 
This is an advantage and practicable.


Keeping Console Output by simply archiving is possible. I do so on the 
following way:
-Use Log Parser Plugin which generates a Log.txt or similar in your project on 
slave workspace and include it as post build step('Console output(build 
log)parsing')
-Get your Console Output from slaves by scp/ssh or similar e.g.




Original Message processed by david®  
Re: Re-4: Copy files from remote Jenkins workspace (14-Nov-2016 10:41)
From:   Eran Yanay
To:jenkinsci-users@googlegroups.com



Discarding older builds means it discards my console output of these builds as 
well, I wish to keep it.



On Mon, Nov 14, 2016 at 11:40 AM, Jovan Jevric  wrote:


Do archive the artefacts elsewhere by running a post-build job, as you 
proposed. And simply parametrize your job that way, that elder jobs on your 
host are being deleted automatically. In other words - simply discard old 
builds, doing that is very simple.






Original Message processed by david®  
Re: Re-2: Copy files from remote Jenkins workspace (14-Nov-2016 10:15)
From:   buddy123
To:Jenkins Users



I'll look into pipeline, though it seems very complicated. 
Regarding artifacts, I've thought about it, but I cant figure out how to delete 
the artifacts once I finished the job, otherwise my disk space will get empty 
very quickly.
Is it possilble to mark files as artifacts, pull them from slave, and then 
erase them?
I want to keep the console output of every build though, just dont care about 
the artifacts because I store them elsewhere


On Monday, November 14, 2016 at 11:12:08 AM UTC+2, jje wrote: 
What about archiving artefacts. On that way all output marked as artefacts 
could be found on master so far, couldn't it?




Original Message processed by david®  
Re: Copy files from remote Jenkins workspace (13-Nov-2016 15:39)
From:   Baptiste Mathus
To:jenkins...@googlegroups.com



Look for pipeline jobs. Might be far easier to achieve that. 

 
https://jenkins.io/pipeline/getting-started-pipelines/[jenkins.io]
 



2016-11-13 11:23 GMT+01:00 buddy123 :



down votefavorite[stackoverflow.com] Im trying to create a cross-compilation 
job, that will build my code for both Windows & Linux. I have set up Windows & 
Linux jenkins nodes, and configured two jobs, one with 'windows' label to run 
on my Windows machine and the other with 'linux' label to run on my linux 
machine. I installed MultiJob plugin, and wrapped both jobs to run in parallel 
When both finishes successfully, I want to copy all the generated files and do 
operations on them In other words I want to copy the files from both jobs 
remote workspaces for further operations Can anyone suggest a way how to do it?

-- 
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/05639dc0-fce6-4ce7-9cc1-c39e95ca7498%40googlegroups.com[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].


 
-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CANW

Parallel job execution using Jenkinsfile and slaves

2016-11-14 Thread Bryan P
I am trying to execute a parallel test run however we dont use maven, we 
execute our test runs using shell script.  Can parallel runs work using the 
example below?

I've tried multiple methods of allowing parallelization however most allow 
the execution on one slave instead queuing for another slave.

  def splits = splitTests count(5)
def branches = [:]
for (int i = 0; i < splits.size(); i++) {
  def index = i // fresh variable per iteration; i will be mutated
  branches["split${i}"] = {
node("node-name") {
  deleteDir()
  unstash '{env.BRANCH_NAME}'
  def exclusions = splits.get(index);
  sh './script/test-queue 
test/{models,othertests}/**/*.rb"' // unit tests to execute
  junit '**/*.xml'
}
  }
}
parallel branches



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/e57b2ab6-84c1-4427-a56e-b3e6983a4e0f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Regarding bump up development version and release version issue

2016-11-14 Thread Koti Kiran
Hi Team,

I am using git repository and trying to build with maven in jenkins but the 
version is not bump up. can you tell me what the reason?

-- 
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/c56391d6-7427-4f41-8aa9-f985b58a77a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins failed using Ant Copy Command

2016-11-14 Thread john rainier borden
Thanks for the reply. Yes it does and it seems that the problem only occurs 
on our Windows 2008 servers. 

On Tuesday, November 15, 2016 at 10:12:33 AM UTC+8, ok999 wrote:
>
> Does your jenkins user, have write perm on those failing servers? 
>
> On Monday, November 14, 2016, john rainier borden  > wrote:
>
>> Hi!
>>
>> I'm trying to create a simple freestyle project to build an executable. 
>> My build is primarily composed of ant and batch script and is ran via 
>> jenkins. 
>>
>> It was able to build the binary but my problem is the build is failing 
>> when copying to a shared/mapped drive. 
>>
>> see error below
>>
>> "Attempt to copy Folder\dist\file.exe to \\shareddrive\file.exe using 
>> NIO Channels failed due to 'failed to create the parent directory for 
>> \\shareddrive\file.ex'. Falling back to streams. "
>>
>> I have a separate buildbox that is windows 7 and is working fine, the 
>> issue is only happening on my 2 Windows 2008 server
>>
>> am i missing something? Any response are greatly appreciated.
>>
>> thanks,
>> John
>>
>> -- 
>> 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/0963933e-3dbf-45ca-99d9-726690b1aa28%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> -- 
> Sent from mobile device, excuse typos if any.
>

-- 
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/29b3d3bf-27d1-4ce8-b595-0841b92aa5f9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins failed using Ant Copy Command

2016-11-14 Thread niristotle okram
Does your jenkins user, have write perm on those failing servers?

On Monday, November 14, 2016, john rainier borden <
johnrainierbor...@gmail.com> wrote:

> Hi!
>
> I'm trying to create a simple freestyle project to build an executable. My
> build is primarily composed of ant and batch script and is ran via jenkins.
>
> It was able to build the binary but my problem is the build is failing
> when copying to a shared/mapped drive.
>
> see error below
>
> "Attempt to copy Folder\dist\file.exe to \\shareddrive\file.exe using NIO
> Channels failed due to 'failed to create the parent directory for
> \\shareddrive\file.ex'. Falling back to streams. "
>
> I have a separate buildbox that is windows 7 and is working fine, the
> issue is only happening on my 2 Windows 2008 server
>
> am i missing something? Any response are greatly appreciated.
>
> thanks,
> John
>
> --
> 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/0963933e-3dbf-45ca-99d9-726690b1aa28%40googlegroups.
> com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Sent from mobile device, excuse typos if any.

-- 
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/CAPzcO4jzW2FHH2VyU66%2BrV5PaBdueOsC0QeQA%2BRHH0kntnV3KQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins failed using Ant Copy Command

2016-11-14 Thread john rainier borden
Hi!

I'm trying to create a simple freestyle project to build an executable. My 
build is primarily composed of ant and batch script and is ran via jenkins. 

It was able to build the binary but my problem is the build is failing when 
copying to a shared/mapped drive. 

see error below

"Attempt to copy Folder\dist\file.exe to \\shareddrive\file.exe using NIO 
Channels failed due to 'failed to create the parent directory for 
\\shareddrive\file.ex'. Falling back to streams. "

I have a separate buildbox that is windows 7 and is working fine, the issue 
is only happening on my 2 Windows 2008 server

am i missing something? Any response are greatly appreciated.

thanks,
John

-- 
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/0963933e-3dbf-45ca-99d9-726690b1aa28%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Bitbucket webhook triggering 2 builds at once

2016-11-14 Thread Tim Webster
Hi Michael,

Thanks for your reply.

I don't actually have that plugin installed (Bitbucket Branch Source
Plugin).  Should I?

To be honest I'm not sure what plugins (on both sides) I should be using.
What I had seemed to work OK for a while - until now.

Thanks,

Tim


On Mon, Nov 14, 2016 at 11:19 PM, Michael Kobit  wrote:

> Sorry for mobile link:
>
> https://issues.jenkins-ci.org/plugins/servlet/mobile#issue/JENKINS-36283
>
> That issue is for customizing what is built by the plugin.
>
> On Mon, Nov 14, 2016, 16:43 Tim Webster  wrote:
>
>> Hi,
>>
>> For some reason, my Bitbucket webhooks are triggering 2 Jenkins builds at
>> once in multibranch pipeline projects.
>>
>> One build will have a commit notification as the trigger, while the other
>> one will have 'branch indexing' as the trigger (at least I think it's the
>> trigger).
>>
>> Nothing has changed on the Bitbucket side, and it all used to work fine
>> which makes me think the problem is on the Jenkins side of things...
>>
>> The only changes I've made are upgrading some pipeline plugins and
>> setting some job properties in the Jenkinsfile (for discard old builds
>> plugin), but it's worked OK for the past few days.
>>
>> It also seems to happen on some projects, but not others.
>>
>> Does anyone know where I should start looking?  I'm relatively new to
>> both Jenkins and Bitbucket.
>>
>> I'm using:
>>
>> Jenkins v2.30
>> Bitbucket v4.8.4
>>
>> and this Bitbucket Plugin:
>>
>> https://marketplace.atlassian.com/plugins/com.nerdwin15.stas
>> h-stash-webhook-jenkins/server/overview
>>
>>
>> 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/ms
>> gid/jenkinsci-users/CABrquLxuA6tYm_vR-wJpcy6V3m2QC%2B%
>> 2BYdBNfoY%3Di2wGW%3Dc%3DR5w%40mail.gmail.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/ms
> gid/jenkinsci-users/CALELY9Gv5Z2Ai35wUkUCu0u%3D4LmB6rbYDox6v
> qcxa7xYDRVfWw%40mail.gmail.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/CABrquLwnd%3DpZnOGCjxo4XP7Yqh_fa37x0kD677umUikMw_mZVA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to downgrade Jenkins from 2.x to 1.x version in windows

2016-11-14 Thread Donald Morton
I think you would want to restore the Jenkins home directory from a backup 
you made prior to the upgrade.


On Thursday, November 3, 2016 at 5:15:13 AM UTC-5, MI wrote:
>
> How could we downgrade to earlier version in case of something went wrong 
> after upgraded to newer version of Jenkins?
>

-- 
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/4421573d-3caa-4093-8157-03cb3b6c5cba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


how to reliably installing plugins?

2016-11-14 Thread Rui Lopes
I'm having a hard time trying to reliably install plugins from an shell 
script. I'm trying this at [0]:

JCLI="java -jar /var/cache/jenkins/war/WEB-INF/jenkins-cli.jar -s 
http://localhost:8080";

function jcli {
$JCLI -noKeyAuth "$@"
}

jcli install-plugin git -deploy
jcli install-plugin powershell -deploy

but it randomly fails at different places while downloading the plugin .hpi 
files, which is quite frustrating... e.g.: this time it happened with 
display-url-api.hpi:

SEVERE: Failed to install Display URL API   



hudson.util.IOException2: Failed to download from 
http://updates.jenkins-ci.org/download/plugins/display-url-api/0.5/display-url-api.hpi
 
(redirected to: 
http://ftp.icm.edu.pl/packages/jenkins/plugins/display-url-api/0.5/display-url-api.hpi)
at 
hudson.model.UpdateCenter$UpdateCenterConfiguration.download(UpdateCenter.java:1169)
 


at 
hudson.model.UpdateCenter$DownloadJob._run(UpdateCenter.java:1666) 


  
at 
hudson.model.UpdateCenter$InstallationJob._run(UpdateCenter.java:1864) 


  
at 
hudson.model.UpdateCenter$DownloadJob.run(UpdateCenter.java:1640)   


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


 
at java.util.concurrent.FutureTask.run(FutureTask.java:266) 



at 
hudson.remoting.AtmostOneThreadExecutor$Worker.run(AtmostOneThreadExecutor.java:110)
 


at java.lang.Thread.run(Thread.java:745)   


 
Caused by: java.io.IOException: Failed to load 
http://updates.jenkins-ci.org/download/plugins/display-url-api/0.5/display-url-api.hpi
 
to /var/lib/jenkins/plugins/display-url-api.jpi.tmp 
  
at 
hudson.model.UpdateCenter$UpdateCenterConfiguration.download(UpdateCenter.java:1142)
 


... 7 more 


 
Caused by: java.net.SocketException: Connection reset   



at java.net.SocketInputStream.read(SocketInputStream.java:209) 


 
at java.net.SocketInputStream.read(SocketInputStream.java:141) 


 
at java.io.BufferedInputStream.fill(BufferedInputStream.java:246)   



at java.io.BufferedInputStream.read1(BufferedInputStream.java:286) 


 
at java.io.BufferedInputStream.read(BufferedInputStream.java:345)   

Re: Bitbucket webhook triggering 2 builds at once

2016-11-14 Thread Michael Kobit
Sorry for mobile link:

https://issues.jenkins-ci.org/plugins/servlet/mobile#issue/JENKINS-36283

That issue is for customizing what is built by the plugin.

On Mon, Nov 14, 2016, 16:43 Tim Webster  wrote:

> Hi,
>
> For some reason, my Bitbucket webhooks are triggering 2 Jenkins builds at
> once in multibranch pipeline projects.
>
> One build will have a commit notification as the trigger, while the other
> one will have 'branch indexing' as the trigger (at least I think it's the
> trigger).
>
> Nothing has changed on the Bitbucket side, and it all used to work fine
> which makes me think the problem is on the Jenkins side of things...
>
> The only changes I've made are upgrading some pipeline plugins and setting
> some job properties in the Jenkinsfile (for discard old builds plugin), but
> it's worked OK for the past few days.
>
> It also seems to happen on some projects, but not others.
>
> Does anyone know where I should start looking?  I'm relatively new to both
> Jenkins and Bitbucket.
>
> I'm using:
>
> Jenkins v2.30
> Bitbucket v4.8.4
>
> and this Bitbucket Plugin:
>
>
> https://marketplace.atlassian.com/plugins/com.nerdwin15.stash-stash-webhook-jenkins/server/overview
>
>
> 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/CABrquLxuA6tYm_vR-wJpcy6V3m2QC%2B%2BYdBNfoY%3Di2wGW%3Dc%3DR5w%40mail.gmail.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/CALELY9Gv5Z2Ai35wUkUCu0u%3D4LmB6rbYDox6vqcxa7xYDRVfWw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Global "disable triggers" options

2016-11-14 Thread Donald Morton
I've run a groovy script to disable all jobs before. Then, I just enable 
the jobs I want to run. The problem with that, though is that Pipeline jobs 
can't be disabled. So, I normally have to go into the test instance and 
manually remove the triggers on the Pipeline jobs to keep them from 
running. I'm sure a script could do this, too, but I haven't seen one.


On Monday, November 7, 2016 at 8:04:51 AM UTC-6, Michael Giroux wrote:
>
> We have a large jenkins configuration with 1700 jobs.  We have two use 
> cases in which the configuration is copied. We make a copy of the 
> configuration prior to any upgrade:
>
> 1. for purposes of testing new version and plugins prior to an upgrade
> 2. to have a running instance of the previous version to allow "emergency 
> builds" for projects that will not build in new version after an upgrade.
>
> In both of these use cases, we have two copies of Jenkins running at the 
> same time (on different ports of course), the old version, and the new 
> version.  In either case, we want to disable the build triggers for one of 
> the instances.  We do not want two copies of jenkins building the same 
> project based on polling, or due to upstream builds and/or snapshot changes.
>
> We can use "prepare to shutdown" to suspend one instance.  But if we 
> cancel shutdown to allow a specific build to be run, the flood gates open.
>
> It would be helpful  if there was an option to allow manual builds even 
> when "prepare to shutdown" is in effect.  Or, as the subject line suggests, 
> an option to disable triggers. Such an option should have an initial state 
> set by a system property allowing us to launch Jenkins with the option 
> initially on or off.
>
> Similar requests have been made previously:
> http://jenkins-ci.361315.n4.nabble.com/Suspend-Plugin-td1599530.html
>
> http://stackoverflow.com/questions/1299180/can-i-disable-hudsons-automatic-scheduled-builds-all-at-once
>
> I would be interested in hearing how other users handle this case, 
> especially case #2 in which we wish to have the old instance of Jenkins 
> available to run builds that might not execute in the new version.
>
> Michael
>
>
>

-- 
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/88fb59b0-ed81-47f2-8012-315f554d5f7b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: publish-over-cifs in a pipeline build

2016-11-14 Thread Donald Morton
I think you can have the job run the "net use" command to tie credentials 
to a fileshare, and then just copy like it's a regular file. Not sure how 
you'd secure the credentials, though. Ansible, Puppet, or Windows DSC might 
be other options to pursue. 

On Tuesday, November 8, 2016 at 5:13:17 PM UTC-6, Tristan Bull wrote:
>
> Hi all,
>
> I'm looking at converting our Jenkins implementation over to pipeline 
> builds using the github-organization-folder plugin. Our current builds 
> publish build artifacts to a windows file share using the publish-over-cifs 
> plugin. What is the best way to accomplish this in a pipeline build? It 
> does not appear that the publish-over-cifs plugin is compatible. Thanks,
>
> -Tristan
>

-- 
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/7607bc55-d730-4585-804a-320afbc76146%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Slave Jenkins on an RHEL box

2016-11-14 Thread Donald Morton
Sounds like the ssh command is failing. Maybe the password or private key 
is wrong? 


On Monday, November 14, 2016 at 10:28:20 AM UTC-6, Peter Berghold wrote:
>
> I have Jenkins running merrily on an Ubuntu box and want to set up a slave 
> on an RHEL box. 
>
> Created a script on the RHEL box that essentially launches a script that 
> in turn launches the slave.jar.  Trying to invoke it over SSH and there's 
> where things take a turn for the worse.
>
> I'm getting this:
>
> [11/14/16 16:22:37] Launching agent
> $ /usr/share/tomcat8/startSlave0
> Host key verification failed.
> ERROR: Unable to launch the agent for java.io.EOFException 
> : 
> unexpected stream termination
>   at hudson.remoting.ChannelBuilder.negotiate(ChannelBuilder.java:365) 
> 
>   at hudson.remoting.ChannelBuilder.build(ChannelBuilder.java:310) 
> 
>   at hudson.slaves.SlaveComputer.setChannel(SlaveComputer.java:388) 
> 
>   at hudson.slaves.CommandLauncher.launch(CommandLauncher.java:131) 
> 
>   at hudson.slaves.SlaveComputer$1.call(SlaveComputer.java:261) 
> 
>   at 
> jenkins.util.ContextResettingExecutorService$2.call(ContextResettingExecutorService.java:46)
>  
> 
>   at java.util.concurrent.FutureTask.run(FutureTask.java:266) 
> 
>   at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
>  
> 
>   at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
>  
> 
>   at java.lang.Thread.run(Thread.java:745) 
> 
> ERROR: Process terminated with exit code 255
>
>
> That first line is a script on the master that does the SSH.What I'm not 
> sure about is exactly what is complaining about Host key verification.  Given 
> I can run that script by hand and it starts the jar file I'm a bit confused 
> about what's going on here. 
>
>
> Has anybody gotten this to work?
>
>
>

-- 
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/b9a359bf-eef0-4855-9178-515ee70acce6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Bitbucket webhook triggering 2 builds at once

2016-11-14 Thread Tim Webster
Hi,

For some reason, my Bitbucket webhooks are triggering 2 Jenkins builds at
once in multibranch pipeline projects.

One build will have a commit notification as the trigger, while the other
one will have 'branch indexing' as the trigger (at least I think it's the
trigger).

Nothing has changed on the Bitbucket side, and it all used to work fine
which makes me think the problem is on the Jenkins side of things...

The only changes I've made are upgrading some pipeline plugins and setting
some job properties in the Jenkinsfile (for discard old builds plugin), but
it's worked OK for the past few days.

It also seems to happen on some projects, but not others.

Does anyone know where I should start looking?  I'm relatively new to both
Jenkins and Bitbucket.

I'm using:

Jenkins v2.30
Bitbucket v4.8.4

and this Bitbucket Plugin:

https://marketplace.atlassian.com/plugins/com.nerdwin15.stash-stash-webhook-jenkins/server/overview


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/CABrquLxuA6tYm_vR-wJpcy6V3m2QC%2B%2BYdBNfoY%3Di2wGW%3Dc%3DR5w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: "more SCM polling activities scheduled than handled..."

2016-11-14 Thread Donald Morton
Maybe try setting it at 100 threads? That is the max it will do. Not sure 
if setting it blank does the same thing or not. 



On Monday, November 14, 2016 at 3:11:27 PM UTC-6, Josh Santangelo wrote:
>
> I’d love to stop polling, but with Jenkins behind our firewall and git 
> outside of it, the conversation is only one way.
>
> Here’s what I’m seeing in the git polling log on those processes. I would 
> accept that if it timed out it would just try again later, but once it gets 
> in this state, the project never automatically builds again. I can even 
> manually do a build which will be successful, but polling never sorts 
> itself out.
>
> poll] Last Built Revision: Revision 
> e5779a7ee33a8c58a4e13c9930f02b67a07c964a (refs/remotes/origin/multitaction)
>  > C:\Program Files (x86)\Git\cmd\git.exe ls-remote -h g...@bitbucket.org 
> :stimulant/DWD.git # timeout=10
> ERROR: Timeout after 10 minutes
>
> ERROR
> : Failed to join a process
>
> org.jvnet.winp.WinpException
> : Failed to read environment variable table error=299 at 
> .\envvar-cmdline.cpp:201
> at org.jvnet.winp.Native.getCmdLineAndEnvVars(Native Method)
> at org.jvnet.winp.WinProcess.parseCmdLineAndEnvVars(WinProcess.java:126)
> at org.jvnet.winp.WinProcess.getCommandLine(WinProcess.java:102)
> at hudson.util.ProcessTree$Windows$1.getArguments(ProcessTree.java:444)
> at 
> hudson.plugins.msbuild.MsBuildKillingVeto.vetoProcessKilling(MsBuildKillingVeto.java:55)
> at hudson.util.ProcessTree$OSProcess.getVeto(ProcessTree.java:242)
> at hudson.util.ProcessTree$Windows$1.killRecursively(ProcessTree.java:425)
> at hudson.util.ProcessTree.killAll(ProcessTree.java:145)
> at hudson.Proc$LocalProc.destroy(Proc.java:378)
> at hudson.Proc$LocalProc.kill(Proc.java:370)
> at hudson.Proc$1.run(Proc.java:157)
> at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
> at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
> 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 java.lang.Thread.run(Unknown Source)
>
> -- 
> S T I M U L Λ N T
> Josh Santangelo, Technical Director
> P 415 363 0336 / HQ 415 255 7081 / T @stimulant
>
> On Nov 13, 2016, at 6:30 AM, Baptiste Mathus  > wrote:
>
> Hi,
>
> The ideal target you should actually strive for is to "kill polling", and 
> use push instead, as explained in 
> http://kohsuke.org/2011/12/01/polling-must-die-triggering-jenkins-builds-from-a-git-hook/
>
> If you really really cannot consider that, then in your place I would 
> maybe try and mimic what Jenkins is supposedly doing: on your machine, 
> write a script that clones repo, or updates it every minute (or something 
> similar with what you put in Jenkins), during say an hour, or a day. Goal 
> being to have data about connectivity.
>
> Maybe it's just bitbucket.org that's inconsistent, and sometimes never 
> answers. Or maybe not. IMO that's the first thing you want to look at. 
>
> For example, looking at https://status.bitbucket.org/ I see issues around 
> the date of your message, was your issue that day or something that's been 
> consistently problematic across weeks?
>
> -- Baptiste
>
> 2016-11-10 22:30 GMT+01:00 Josh Santangelo  >:
>
>> Hi all -- I'm seeing the "There are more SCM polling activities scheduled 
>> than handled, so the threads are not keeping up with the demands" error 
>> consistently on my Jenkins setup (2.3, running as a Windows service).
>>
>> Going to my http://jenkins/descriptor/hudson.triggers.SCMTrigger/ page 
>> does show jobs hanging for hours at a time, but always different jobs.
>>
>> I currently have 14 jobs enabled which are polling git repos on 
>> BitBucket.org (I had more, but I disabled a bunch trying to troubleshoot 
>> this issue).
>>
>> On the "Manage Jenkins" page I set "Max # of concurrent polling" to 
>> empty, which seems to mean an unlimited number of threads, but the issue 
>> remains.
>>
>> Is there anything else I should look at?
>>
>> thanks,
>> -josh
>>
>> -- 
>> 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/03919522-cec0-43e7-8c9f-ed102234a3a6%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> -- 
> You received this message because you are subscribed to a topic in the 
> Google Groups "Jenkins Users" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/jenkinsci-users/vgdwV1et_oA/unsubscribe.
> To unsubscribe from this group a

Re: Getting "java.io.NotSerializableException" exception in Jenkins pipeline, groovy.

2016-11-14 Thread Donald Morton

Here are some references for you:

https://support.cloudbees.com/hc/en-us/articles/230612967-Pipeline-The-pipeline-even-if-successful-ends-with-java-io-NotSerializableException

https://github.com/jenkinsci/pipeline-plugin/blob/master/TUTORIAL.md#serializing-local-variables

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




On Sunday, November 13, 2016 at 11:13:35 PM UTC-6, Ganesh Kumbhar wrote:
>
> Hello All,
>
> I am new to Jenkins pipeline and recently started to use it for my project 
> build.
>
> So, from Jenkins file I am calling a method from other .groovy file which 
> is simple script having some functions defined and in those functions I am 
> creating antbuilder object -> "@Field AntBuilder antBuilder = new 
> AntBuilder()"
> But the problem is, I am not able to call any ant targets using antbuilder 
> object, simply calling echo using this object like -> " antBuilder.echo 
> 'print 
> statement' "  gives *"NotSerializableException"*exception.
>
> java.io.NotSerializableException: org.apache.tools.ant.taskdefs.Echo
>
>   at 
> org.jboss.marshalling.river.RiverMarshaller.doWriteObject(RiverMarshaller.java:860)
>   at 
> org.jboss.marshalling.river.RiverMarshaller.doWriteFields(RiverMarshaller.java:1032)
>   at 
> org.jboss.marshalling.river.RiverMarshaller.doWriteSerializableObject(RiverMarshaller.java:988)
>   at 
> org.jboss.marshalling.river.RiverMarshaller.doWriteObject(RiverMarshaller.java:854)
>   at 
> org.jboss.marshalling.river.RiverMarshaller.doWriteFields(RiverMarshaller.java:1032)
>   at 
> org.jboss.marshalling.river.RiverMarshaller.doWriteSerializableObject(RiverMarshaller.java:988)
>   at 
> org.jboss.marshalling.river.RiverMarshaller.doWriteObject(RiverMarshaller.java:854)
>   at 
> org.jboss.marshalling.river.RiverMarshaller.doWriteFields(RiverMarshaller.java:1032)
>   at 
> org.jboss.marshalling.river.RiverMarshaller.doWriteSerializableObject(RiverMarshaller.java:988)
>   at 
> org.jboss.marshalling.river.RiverMarshaller.doWriteObject(RiverMarshaller.java:854)
>
>
> So please guide me to resolve this problem if anyone had faced this issue 
> or have any idea about it.
> Any help is appreciated!
> Thank you very much!
> Ganesh K.
>

-- 
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/2b760da3-e4d8-4da4-a554-dbfca8576d86%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: removing or disabling specific buttons while running build

2016-11-14 Thread Victor Martinez
I guess you can create some dynamic rendering 
with https://wiki.jenkins-ci.org/display/JENKINS/Active+Choices+Plugin

On Monday, 14 November 2016 13:05:46 UTC, gyanendra ojha wrote:
>
> Hi,
>
> while running build my jenkins UI looks like shown in image attached while 
> running the build
>
> now, i want whenever i select dev in the first button,i want 3rd button 
> tag_version to be either disabled or disappear
>
> likewise when i select tag from first control box , i want 2nd button 
> dev_feauture to disappear
>
> u guys have any solution?
>
>
>

-- 
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/f668dece-6554-47b6-9e68-1b1864428054%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: "more SCM polling activities scheduled than handled..."

2016-11-14 Thread Josh Santangelo
I’d love to stop polling, but with Jenkins behind our firewall and git outside 
of it, the conversation is only one way.

Here’s what I’m seeing in the git polling log on those processes. I would 
accept that if it timed out it would just try again later, but once it gets in 
this state, the project never automatically builds again. I can even manually 
do a build which will be successful, but polling never sorts itself out.

poll] Last Built Revision: Revision e5779a7ee33a8c58a4e13c9930f02b67a07c964a 
(refs/remotes/origin/multitaction)
 > C:\Program Files (x86)\Git\cmd\git.exe ls-remote -h 
 > g...@bitbucket.org:stimulant/DWD.git # timeout=10
ERROR: Timeout after 10 minutes

ERROR
: Failed to join a process

org.jvnet.winp.WinpException
: Failed to read environment variable table error=299 at 
.\envvar-cmdline.cpp:201
at org.jvnet.winp.Native.getCmdLineAndEnvVars(Native Method)
at org.jvnet.winp.WinProcess.parseCmdLineAndEnvVars(WinProcess.java:126)
at org.jvnet.winp.WinProcess.getCommandLine(WinProcess.java:102)
at hudson.util.ProcessTree$Windows$1.getArguments(ProcessTree.java:444)
at 
hudson.plugins.msbuild.MsBuildKillingVeto.vetoProcessKilling(MsBuildKillingVeto.java:55)
at hudson.util.ProcessTree$OSProcess.getVeto(ProcessTree.java:242)
at 
hudson.util.ProcessTree$Windows$1.killRecursively(ProcessTree.java:425)
at hudson.util.ProcessTree.killAll(ProcessTree.java:145)
at hudson.Proc$LocalProc.destroy(Proc.java:378)
at hudson.Proc$LocalProc.kill(Proc.java:370)
at hudson.Proc$1.run(Proc.java:157)
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
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 java.lang.Thread.run(Unknown Source)

-- 
S T I M U L Λ N T
Josh Santangelo, Technical Director
P 415 363 0336 / HQ 415 255 7081 / T @stimulant

> On Nov 13, 2016, at 6:30 AM, Baptiste Mathus  wrote:
> 
> Hi,
> 
> The ideal target you should actually strive for is to "kill polling", and use 
> push instead, as explained in 
> http://kohsuke.org/2011/12/01/polling-must-die-triggering-jenkins-builds-from-a-git-hook/
>  
> 
> 
> If you really really cannot consider that, then in your place I would maybe 
> try and mimic what Jenkins is supposedly doing: on your machine, write a 
> script that clones repo, or updates it every minute (or something similar 
> with what you put in Jenkins), during say an hour, or a day. Goal being to 
> have data about connectivity.
> 
> Maybe it's just bitbucket.org  that's inconsistent, 
> and sometimes never answers. Or maybe not. IMO that's the first thing you 
> want to look at. 
> 
> For example, looking at https://status.bitbucket.org/ 
>  I see issues around the date of your message, 
> was your issue that day or something that's been consistently problematic 
> across weeks?
> 
> -- Baptiste
> 
> 2016-11-10 22:30 GMT+01:00 Josh Santangelo  >:
> Hi all -- I'm seeing the "There are more SCM polling activities scheduled 
> than handled, so the threads are not keeping up with the demands" error 
> consistently on my Jenkins setup (2.3, running as a Windows service).
> 
> Going to my http://jenkins/descriptor/hudson.triggers.SCMTrigger/ 
>  page does show jobs 
> hanging for hours at a time, but always different jobs.
> 
> I currently have 14 jobs enabled which are polling git repos on BitBucket.org 
> (I had more, but I disabled a bunch trying to troubleshoot this issue).
> 
> On the "Manage Jenkins" page I set "Max # of concurrent polling" to empty, 
> which seems to mean an unlimited number of threads, but the issue remains.
> 
> Is there anything else I should look at?
> 
> thanks,
> -josh
> 
> -- 
> 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/03919522-cec0-43e7-8c9f-ed102234a3a6%40googlegroups.com
>  
> .
> For more options, visit https://groups.google.com/d/optout 
> .
> 
> 
> -- 
> You received this message because you are subscribed to a topic in the Google 
> Groups "Jenkins User

Re: How to remove plugins that do not appear in plugin management "Installed" tab

2016-11-14 Thread Daniel Beck

> On 11.11.2016, at 16:54, Michael Giroux  wrote:
> 
> Is it safe to delete the plugins from the $JENKINS_HOME/plugins directory?

Yes.

-- 
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/7DE2C5D1-20E8-4A72-9661-27A6C20C5E2C%40beckweb.net.
For more options, visit https://groups.google.com/d/optout.


Re: How to remove plugins that do not appear in plugin management "Installed" tab

2016-11-14 Thread Michael Giroux
We no longer use Cloudbees.  We do not want to re-install them.  We want to 
get ride of them.  Since they do not appear on the installed tab, it seems 
the only option is to manually delete the plugins.  Just confirming this is 
the best approach.

On Friday, November 11, 2016 at 8:54:03 AM UTC-7, Michael Giroux wrote:
>
> Sorry for the previous post.  Subject line was incomplete.
>
> We upgraded from Jenkins 1.609.3 to Jenkins 2.19.2 LTS.  Upgrade went very 
> well, but we are seeing some plugin warnings on the "Manage Plugins" page 
> (see below).  The errors are all related to CloudBees plugins.  There is a 
> link to "correct" the problem, but that takes us to the plugin updates 
> page, and none of these plugins appear.  Nor do they appear in the 
> "installed" tab.
>
> We had CloudBees installed a few years ago, but reverted to Jenkins LTS. 
>  We were not seeing these errors in the 1.609.3 Manage Plugins page, so it 
> has probably been an issue since we uninstalled CloudBees.
>
> QUESTION: How do we eliminate these errors?  Is it safe to delete the 
> plugins from the $JENKINS_HOME/plugins directory?  My thought is:
>
> cd $JENKINS_HOME/plugins
> rm -rf skip-plugin skip-plugin.jpi
>
> and repeat for each plugin.
>
> Is there a better approach?
>
> There are dependency errors loading some plugins:
>
>- CloudBees Skip Next Build Plugin v3.4
>   - Jenkins Enterprise License Entitlement Check v3.1 failed to load. 
>   Fix this plugin first.
>- CloudBees VMWare Autoscaling Plugin v3.10
>   - Jenkins Enterprise License Entitlement Check v3.1.3 failed to 
>   load. Fix this plugin first.
>- CloudBees WikiText Security Plugin v3.2
>   - cloudbees-license v3.1 is missing. To fix, install v3.1 or later.
>   - Jenkins Enterprise License Entitlement Check v3.1 failed to load. 
>   Fix this plugin first.
>- CloudBees Role-Based Access Control Plugin v4.5.1
>   - Jenkins Enterprise License Entitlement Check v5.1 failed to load. 
>   Fix this plugin first.
>- CloudBees Git Validated Merge Plugin v3.12
>   - Jenkins Enterprise License Entitlement Check v4.0 failed to load. 
>   Fix this plugin first.
>- Jenkins Enterprise License Entitlement Check v5.2
>   - cloudbees-license v5.2 is missing. To fix, install v5.2 or later.
>- CloudBees Back-up Plugin v3.5
>   - Jenkins Enterprise License Entitlement Check v3.1.2 failed to 
>   load. Fix this plugin first.
>   - 
>
>

-- 
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/9bf86279-969f-4624-b9cf-76c77222912e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Reset password on accounts.jenkins.io , but password not recognised on issues.jenkins-ci.org

2016-11-14 Thread Asfand Yar Qazi
Hello,

I have an old account on jenkins-ci.org . I tried resetting the password, 
was redirected to jenkins.io , where I successfully changed my password.

However, when I now try to log in at issues.jenkins-ci.org , I get a 
password incorrect error.

Can someone help me with this?

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/42536e6c-b116-4f03-86ca-05f80473a6de%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Changing the default concurrent workspace identifier "@X" in pipeline job

2016-11-14 Thread Pierre Lerouge
Thank you very much sir !
That's all I needed !


Le lundi 14 novembre 2016 16:38:16 UTC+1, Daniel Beck a écrit :
>
>
> > On 14.11.2016, at 16:22, Pierre Lerouge  > wrote: 
> > 
> > Is there any way to define another separator than "@" ? 
> > 
>
>
> https://wiki.jenkins-ci.org/display/JENKINS/Features+controlled+by+system+properties
>  
>
> java -Dhudson.slaves.WorkspaceList=_ -jar jenkins.war 
>
>

-- 
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/691c9da9-2997-40e7-bfe0-6ae08583bd23%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Slave Jenkins on an RHEL box

2016-11-14 Thread Peter Berghold
I have Jenkins running merrily on an Ubuntu box and want to set up a slave
on an RHEL box.

Created a script on the RHEL box that essentially launches a script that in
turn launches the slave.jar.  Trying to invoke it over SSH and there's
where things take a turn for the worse.

I'm getting this:

[11/14/16 16:22:37] Launching agent
$ /usr/share/tomcat8/startSlave0
Host key verification failed.
ERROR: Unable to launch the agent for java.io.EOFException
:
unexpected stream termination
at hudson.remoting.ChannelBuilder.negotiate(ChannelBuilder.java:365)

at hudson.remoting.ChannelBuilder.build(ChannelBuilder.java:310)

at hudson.slaves.SlaveComputer.setChannel(SlaveComputer.java:388)

at hudson.slaves.CommandLauncher.launch(CommandLauncher.java:131)

at hudson.slaves.SlaveComputer$1.call(SlaveComputer.java:261)

at 
jenkins.util.ContextResettingExecutorService$2.call(ContextResettingExecutorService.java:46)

at java.util.concurrent.FutureTask.run(FutureTask.java:266)

at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)

at java.lang.Thread.run(Thread.java:745)

ERROR: Process terminated with exit code 255


That first line is a script on the master that does the SSH.What
I'm not sure about is exactly what is complaining about Host key
verification.  Given I can run that script by hand and it starts the
jar file I'm a bit confused about what's going on here.


Has anybody gotten this to work?

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


Launching Build from webpage stops working after upgrade from 1.9 to 2.3

2016-11-14 Thread Robert Conde
Our builds generate a webpage which allows the end-user to more easily 
launch a new build based on the original build. Here's an example:


   Build Links
   
  function runNewBuild()
  {
 xmlhttp= new XMLHttpRequest();
 xmlhttp.open("POST",
"/view/MyView/job/MyJob/buildWithParameters?Parm1=Razz&Parm2=Zazz");
 xmlhttp.send()
  }
   


   Run New Build


The html file is stored in and accessed from the build workspace. E.g. the 
url is:

https://jenkins.myCompany.com:8081/job/MyJob/ws/SomeDir/build_links.html

This worked fine in 1.9, but now fails after upgrading. I fixed some of the 
issues by setting:

System.setProperty("hudson.model.DirectoryBrowserSupport.CSP","sandbox 
allow-forms allow-scripts;")

But I still get (using chrome inspector):

XMLHttpRequest cannot load 
https://jenkins.myCompany.com:8081/view/MyView/job/MyJob/buildWithParameters?Parm1=Razz&Parm2=Zazz.
 
No 'Access-Control-Allow-Origin' header is present on the requested 
resource. Origin 'null' is therefore not allowed access. The response had 
HTTP status code 403.

Can anyone provide into any guidance? Googling tends to bring up stuff 
related to CORS, but unless I'm missing something...this should not be 
cross origin.

Thanks in advance,
Rob Conde

-- 
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/6147e5cb-a8c7-487c-ab56-0eba3425a3ae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Changing the default concurrent workspace identifier "@X" in pipeline job

2016-11-14 Thread Daniel Beck

> On 14.11.2016, at 16:22, Pierre Lerouge  wrote:
> 
> Is there any way to define another separator than "@" ?
> 

https://wiki.jenkins-ci.org/display/JENKINS/Features+controlled+by+system+properties

java -Dhudson.slaves.WorkspaceList=_ -jar jenkins.war

-- 
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/2A358AD4-47DC-4E05-BD06-119EF0F665A9%40beckweb.net.
For more options, visit https://groups.google.com/d/optout.


Changing the default concurrent workspace identifier "@X" in pipeline job

2016-11-14 Thread Pierre Lerouge
Hi, 

I'm having an issue with pipeline jobs, 
basically there's a maven job that call sqlplus, 
my problem is when we have concurrent builds, 
we launch scripts from sqlplus, and it really doens't support file path 
with "@" inside.
when there is no concurrent builds, it works great but as soon as a build 
is running with an "@2" for example, sqlplus fails.

Is there any way to define another separator than "@" ?

Thank you for your help.

Best Regards, 
Pierre LEROUGE

-- 
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/74b522f6-0484-43df-aa93-bb9ad3f873e0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Start up Jenkins from another Windows User Account

2016-11-14 Thread Andreas Hetz
Hi Jerome,

the jenkins-Home-directory is already set to a second disk without any
touch into windows or user directory. Starting up jenkins i am just calling

"C:\Program Files\Java\jre1.8.0_102\bin\java" -Xmx3048m -mx1024m -jar
jenkins.war

so

Any new idea?

Best,
Andreas

2016-11-14 15:44 GMT+01:00 :

> Hi,
> Make sure you have the Jenkins workspace and root folder outside the user
> account where every user can access the Jenkins folder. Inside the Manage
> Jenkins you can set those path. You copy back you stuff from account A into
> the new folder and restart Jenkins and it should be able to see them into
> the new path.
>
> I run it for a different user, the only problem I got is that Jenkins does
> not launch itself upon machine boot nor it can restart itself after update
> since it run as non admin user. But I really need it to run as user account
> and not as full services to get proper environment for 3D rendering unit
> tests and other mounted drive path.
>
> Jerome
>
> On Friday, November 11, 2016 at 6:13:10 AM UTC-5, Andreas Hetz wrote:
>>
>> Hi there,
>>
>> acutally i have the problem starting up Jenkins from another Windows User
>> Account.
>>
>> The last year was started up Jenkins from Windows User Account "A".
>> After project responsibilities changed someone else wants to startup
>> Jenkins with User Account "B".
>>
>> As forseen as soon User Account "B" started up jenkins using Batchfile (
>> no windows service )
>> all jobs are gone.
>>
>> Whats to do for User Account "B" to just overtake the full Jenkins
>> Environment as it is from User Acount "A".
>>
>> Many Thanks.
>>
>> Best,
>> Andreas
>>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Jenkins Users" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/jenkinsci-users/aJv17furBhs/unsubscribe.
> To unsubscribe from this group and all its topics, 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/538145f2-07f0-4930-bad7-e63d5eae4d9c%40googlegroups.
> com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Best,
Andreas

-- 
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/CADepyAieoYyaoBsd-1aNts%3DC-7jR8sTCwYofhbm5pp9nsxCB2w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Pipeline: Multiproject repository

2016-11-14 Thread jerome
I try to keep 1 Jenkins file per folder into the delevery system and it was 
a pain in the end. I simplify things by moving the Jenkinsfile into a sub 
repos (we are using Mercurial). So I keep my Jenkinsfile revision outside 
the main branch and our repos only point to the proper Jenkinsfile sub 
repos. So a single change to Jenkinsfile can be spread to all project by 
just updating sub repos version. So we can branch the Jenkins file for each 
project into the solution individually. It may not apply to your case but 
may help to consider something like it. 

Take care, you will need a up to date Jenkins version to do so, I ran into 
bugs until really recently to make this work properly.

Hope it help,
Jerome

-- 
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/47c3aba5-d8b1-49bd-b81c-045cdcaa4f14%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Suspicious sources placed by Jenkins to /tmp

2016-11-14 Thread Jozef Babjak
The mystery is solved. Jenkins is not guilty at all. 

It was nodejs/npm who tried to install that library from sources, because 
it was not available in the system. I'm not sure why, I'm not sure if it 
succeed or not and I do not know why it does not clean up afterwards, but 
for now it sufficient for me to know that I'm not hacked. :-)

Jozef


On Sunday, November 13, 2016 at 3:08:48 PM UTC+1, Baptiste Mathus wrote:
>
> Might be better that the plugin (?) cleans this up. But I'm not sure 
> that's a security issue: it's already on machine(s) where anyway that 
> source code constantly comes and goes on the disk. So?
>
> Le 9 nov. 2016 9:11 AM, "Jozef Babjak" > 
> a écrit :
>
>> Hello!
>>
>> My Jenkins is creating random (UUID-named) directories under /tmp 
>> directory. Each such directory contains C source codes of libjpeg-turbo, or 
>> at least something which look so. From security point of view it seems to 
>> me very suspicious, if such program like Java-based Jenkins is storing C 
>> sources. 
>>
>> Is this anything which is expected?
>>
>> Some interesting environment settings follow below.
>>
>> Jozef
>>
>> 
>>
>> OS: Red Hat Enterprise Linux Server release 7.1 (Maipo)
>> Jenkins: 2.19.2
>> Java: Java HotSpot(TM) 64-Bit Server VM (build 25.112-b15, mixed mode)
>>
>> installed plugins:
>>
>> ace-editor 1.1
>> active-directory 2.0
>> analysis-core 1.79
>> ant 1.4
>> antisamy-markup-formatter 1.5
>> bouncycastle-api 2.16.0
>> branch-api 1.11.1
>> build-timeout 1.17.1
>> checkstyle 3.46
>> cloudbees-folder 5.13
>> credentials 2.1.8
>> dashboard-view 2.9.10
>> display-url-api 0.5
>> durable-task 1.12
>> email-ext 2.52
>> emailext-template 1.0
>> external-monitor-job 1.6
>> git 3.0.0
>> git-client 2.1.0
>> git-server 1.7
>> gradle 1.25
>> handlebars 1.1.1
>> icon-shim 2.0.3
>> javadoc 1.4
>> jquery-detached 1.2.1
>> junit 1.19
>> ldap 1.13
>> mailer 1.18
>> matrix-auth 1.4
>> matrix-project 1.7.1
>> maven-plugin 2.14
>> momentjs 1.1.1
>> pam-auth 1.3
>> pipeline-build-step 2.3
>> pipeline-graph-analysis 1.2
>> pipeline-input-step 2.3
>> pipeline-milestone-step 1.1
>> pipeline-rest-api 2.2
>> pipeline-stage-step 2.2
>> pipeline-stage-view 2.2
>> resource-disposer 0.3
>> role-strategy 2.3.2
>> scm-api 1.3
>> script-security 1.24
>> ssh-credentials 1.12
>> structs 1.5
>> timestamper 1.8.7
>> token-macro 2.0
>> windows-slaves 1.2
>> workflow-aggregator 2.4
>> workflow-api 2.5
>> workflow-basic-steps 2.3
>> workflow-cps 2.22
>> workflow-cps-global-lib 2.4
>> workflow-durable-task-step 2.5
>> workflow-job 2.8
>> workflow-multibranch 2.9
>> workflow-scm-step 2.2
>> workflow-step-api 2.5
>> workflow-support 2.10
>> ws-cleanup 0.32
>>
>> -- 
>> 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/2420e301-ee95-4c5a-b080-290b73957658%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/f02fc114-77c8-4751-be7d-fd9f2e822e9c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Start up Jenkins from another Windows User Account

2016-11-14 Thread jerome
Hi,
Make sure you have the Jenkins workspace and root folder outside the user 
account where every user can access the Jenkins folder. Inside the Manage 
Jenkins you can set those path. You copy back you stuff from account A into 
the new folder and restart Jenkins and it should be able to see them into 
the new path.

I run it for a different user, the only problem I got is that Jenkins does 
not launch itself upon machine boot nor it can restart itself after update 
since it run as non admin user. But I really need it to run as user account 
and not as full services to get proper environment for 3D rendering unit 
tests and other mounted drive path.

Jerome

On Friday, November 11, 2016 at 6:13:10 AM UTC-5, Andreas Hetz wrote:
>
> Hi there,
>
> acutally i have the problem starting up Jenkins from another Windows User 
> Account. 
>
> The last year was started up Jenkins from Windows User Account "A". 
> After project responsibilities changed someone else wants to startup 
> Jenkins with User Account "B".
>
> As forseen as soon User Account "B" started up jenkins using Batchfile ( 
> no windows service )
> all jobs are gone.
>
> Whats to do for User Account "B" to just overtake the full Jenkins 
> Environment as it is from User Acount "A".
>
> Many Thanks.
>
> Best,
> Andreas
>

-- 
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/538145f2-07f0-4930-bad7-e63d5eae4d9c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Importing .csv file alternatives

2016-11-14 Thread Max Skuse
Hello,

Currently I have a jmeter complete with phantomjs plugin to receive both 
front and back end response times of my web applications, I wish to plot 
these results on jenkins.
My current solution is to export jmeter results as a .csv file and then 
import this file to jenkins and plot specific index values, although 
jenkins currently does not support .csv files fully and I've had some 
unusual results. 
Could anyone recommend some alternatives to make this combination of 
jmeter, phantomjs and jenkins work?

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/8152c153-c027-4087-974e-3c343587ab40%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


removing or disabling specific buttons while running build

2016-11-14 Thread gyanendra ojha
Hi,

while running build my jenkins UI looks like shown in image attached while 
running the build

now, i want whenever i select dev in the first button,i want 3rd button 
tag_version to be either disabled or disappear

likewise when i select tag from first control box , i want 2nd button 
dev_feauture to disappear

u guys have any solution?


-- 
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/a73568b7-0c39-4898-9f5e-8b16dfc7565b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Re-6: Copy files from remote Jenkins workspace

2016-11-14 Thread Eran Yanay
My workspace is already very slim, because I override it for every build.
So I dont really have any housekeeping, as each build only stores
information like console output, and since all my work is done inside the
workspace, I never go out of space.
If I now make artifacts of my workspace for every build, Is it possible to
remove only the artifact once its downloaded to my master node?

On Mon, Nov 14, 2016 at 12:14 PM, Jovan Jevric  wrote:

> You'll have to do some housekeeping anywayOtherwise you'll run out of
> memory very fast.
> By archiving all the artefacts generated(mainly needed for release steps
> or similar) on your own you'll be able to keep your jenkins workspace very
> slim. This is an advantage and practicable.
>
> Keeping Console Output by simply archiving is possible. I do so on the
> following way:
> -Use Log Parser Plugin which generates a Log.txt or similar in your
> project on slave workspace and include it as post build step('Console
> output(build log)parsing')
> -Get your Console Output from slaves by scp/ssh or similar e.g.
>
>
>
> Original Message processed by david®
>
> *Re: Re-4: Copy files from remote Jenkins workspace* (14-Nov-2016 10:41)
> *From:*   Eran Yanay 
> *To:*
> jenkinsci-users@googlegroups.com
>
> Discarding older builds means it discards my console output of these
> builds as well, I wish to keep it.
>
> On Mon, Nov 14, 2016 at 11:40 AM, Jovan Jevric 
> wrote:
>
>> Do archive the artefacts elsewhere by running a post-build job, as you
>> proposed. And simply parametrize your job that way, that elder jobs on your
>> host are being deleted automatically. In other words - simply discard old
>> builds, doing that is very simple.
>>
>>
>>
>>
>> Original Message processed by david®
>>
>> *Re: Re-2: Copy files from remote Jenkins workspace* (14-Nov-2016 10:15)
>> *From:*   buddy123 
>> *To:*
>> Jenkins Users 
>>
>> I'll look into pipeline, though it seems very complicated.
>> Regarding artifacts, I've thought about it, but I cant figure out how to
>> delete the artifacts once I finished the job, otherwise my disk space will
>> get empty very quickly.
>> Is it possilble to mark files as artifacts, pull them from slave, and
>> then erase them?
>> I want to keep the console output of every build though, just dont care
>> about the artifacts because I store them elsewhere
>>
>>
>> On Monday, November 14, 2016 at 11:12:08 AM UTC+2, jje wrote:
>>>
>>> What about archiving artefacts. On that way all output marked as
>>> artefacts could be found on master so far, couldn't it?
>>>
>>>
>>>
>>> Original Message processed by david®
>>>
>>> *Re: Copy files from remote Jenkins workspace* (13-Nov-2016 15:39)
>>> *From:*   Baptiste Mathus
>>> *To:*
>>> jenkins...@googlegroups.com
>>>
>>> Look for pipeline jobs. Might be far easier to achieve that.
>>>
>>>
>>> https://jenkins.io/pipeline/getting-started-pipelines/[jenkins.io]
>>> 
>>>
>>>
>>> 2016-11-13 11:23 GMT+01:00 buddy123 :
>>>

 down votefavorite[stackoverflow.com]
 

 Im trying to create a cross-compilation job, that will build my code
 for both Windows & Linux. I have set up Windows & Linux jenkins nodes, and
 configured two jobs, one with 'windows' label to run on my Windows machine
 and the other with 'linux' label to run on my linux machine. I installed
 MultiJob plugin, and wrapped both jobs to run in parallel When both
 finishes successfully, I want to copy all the generated files and do
 operations on them In other words I want to copy the files from both jobs
 remote workspaces for further operations Can anyone suggest a way how to do
 it?

 --
 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/ms
 gid/jenkinsci-users/05639dc0-fce6-4ce7-9cc1-c39e95ca7498%40g
 ooglegroups.com[groups.google.com]
 

Error when publishing a Cobertura Report using cobertura plugin

2016-11-14 Thread Lucas samberg
Not sure if this is the right discussion group but I need very much help.

I am having this issue, I am sure this is something related to classloader 
and conflicts on the jenkins dependencies.

java.lang.ClassCastException 
: 
com.ctc.wstx.stax.WstxInputFactory cannot be cast to 
javax.xml.stream.XMLInputFactory
at 
javax.xml.stream.XMLInputFactory.newInstance(XMLInputFactory.java:153) 

at 
hudson.plugins.cobertura.CoberturaPublisher$ParseReportCallable.invoke(CoberturaPublisher.java:532)
 

at 
hudson.plugins.cobertura.CoberturaPublisher$ParseReportCallable.invoke(CoberturaPublisher.java:519)
 

at hudson.FilePath.act(FilePath.java:990) 

at hudson.FilePath.act(FilePath.java:968) 

at 
hudson.plugins.cobertura.CoberturaPublisher.perform(CoberturaPublisher.java:337)
 

at hudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:45) 

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

at 
hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:723)
 

at 
hudson.maven.MavenModuleSetBuild$MavenModuleSetBuildExecution.post2(MavenModuleSetBuild.java:1037)
 

at 
hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:668) 

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

at hudson.maven.MavenModuleSetBuild.run(MavenModuleSetBuild.java:529) 

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

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



Jenkins ver. 1.651.3

Cobertura Plugin 1.8


If anyone have any idea what is happening I would be glad.



-- 
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/ef2be4ed-55e3-4b4c-ad6d-cefa1aff4569%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Pipeline: Multiproject repository

2016-11-14 Thread Sverre Moe
I need some help brainstorming a solution for multiproject repositories.
Pipeline building a repository that contains several delivery projects.

The root of the repository contains several delivery projects.
- delivery-project
  - delivery1
- CMakeList.txt
- delivery-project-delivery1.spec
- src
  - delivery2
- CMakeList.txt
- delivery-project-delivery2.spec
  - delivery3
- CMakeList.txt
- delivery-project-delivery3.spec
- src

I could keep one Jenkinsfile on the root. Then iterate through all 
directories and build each delivery.
However when there is an SCM change in only one of the deliveries I only 
want that one to be built.
This could be solved if I could determine which directory has been changed. 
Something like this (ignore closure which doesn't work in Pipeline):
changedDirectories.each { directory ->
  dir(directory) {
  doBuild()
  }
}
Though I'm not sure how to get the SCM changes to determine this.

Considering this delivery git repository will only have a master branch, a 
Multibranch Pipeline project is not necessary, and a standard Pipeline job 
would suffice.

I could also create a Folder job for delivery-project, and one Pipeline job 
for each delivery. Each subproject could contain its own Jenkinsfile which 
would be specified in the configuration in Script Path as 
delivery1/Jenkinsfile. However when a new delivery project is added to the 
repository it would require me to manually add a new Pipeline job for it.

-- 
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/d231ce64-7b7c-467c-8567-caae0f0ae90f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: pipeline groovy - can somebody please explain why variable value passing is working like this?

2016-11-14 Thread Jonathan Hodgson
I'm sorry, but am I supposed to know what that means?

On Monday, November 14, 2016 at 10:25:12 AM UTC, Thomas Keller wrote:
>
> /sub

-- 
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/d1b04553-3549-4312-b71f-680a8183e312%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: pipeline groovy - can somebody please explain why variable value passing is working like this?

2016-11-14 Thread Thomas Keller
/sub

-- 
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/1c095dc2-2586-43aa-a006-e9991f85c044%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Getting "java.io.NotSerializableException" exception in Jenkins pipeline, groovy.

2016-11-14 Thread Thomas Keller

IIRC objects used in pipelines need to be able to get serialized, because 
the build should be pausable and resumable at any time. Try to refactor the 
AntBuilder object creation and call into a groovy method and annotate this 
method with @NonCPS

-- 
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/470eba97-6898-49e8-b273-214bb3cfc1aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Multibranch Pipeline trigger

2016-11-14 Thread Thomas Keller
Has anybody an idea?

-- 
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/9fee361d-574f-4eda-b117-9a7d21c82d6d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re-6: Copy files from remote Jenkins workspace

2016-11-14 Thread Jovan Jevric
You'll have to do some housekeeping anywayOtherwise you'll run out of 
memory very fast. 
By archiving all the artefacts generated(mainly needed for release steps or 
similar) on your own you'll be able to keep your jenkins workspace very slim. 
This is an advantage and practicable.


Keeping Console Output by simply archiving is possible. I do so on the 
following way:
-Use Log Parser Plugin which generates a Log.txt or similar in your project on 
slave workspace and include it as post build step('Console output(build 
log)parsing')
-Get your Console Output from slaves by scp/ssh or similar e.g.




Original Message processed by david®  
Re: Re-4: Copy files from remote Jenkins workspace (14-Nov-2016 10:41)
From:   Eran Yanay
To:jenkinsci-users@googlegroups.com



Discarding older builds means it discards my console output of these builds as 
well, I wish to keep it.



On Mon, Nov 14, 2016 at 11:40 AM, Jovan Jevric  wrote:


Do archive the artefacts elsewhere by running a post-build job, as you 
proposed. And simply parametrize your job that way, that elder jobs on your 
host are being deleted automatically. In other words - simply discard old 
builds, doing that is very simple.






Original Message processed by david®  
Re: Re-2: Copy files from remote Jenkins workspace (14-Nov-2016 10:15)
From:   buddy123
To:Jenkins Users



I'll look into pipeline, though it seems very complicated. 
Regarding artifacts, I've thought about it, but I cant figure out how to delete 
the artifacts once I finished the job, otherwise my disk space will get empty 
very quickly.
Is it possilble to mark files as artifacts, pull them from slave, and then 
erase them?
I want to keep the console output of every build though, just dont care about 
the artifacts because I store them elsewhere


On Monday, November 14, 2016 at 11:12:08 AM UTC+2, jje wrote: 
What about archiving artefacts. On that way all output marked as artefacts 
could be found on master so far, couldn't it?




Original Message processed by david®  
Re: Copy files from remote Jenkins workspace (13-Nov-2016 15:39)
From:   Baptiste Mathus
To:jenkins...@googlegroups.com



Look for pipeline jobs. Might be far easier to achieve that. 

 
https://jenkins.io/pipeline/getting-started-pipelines/[jenkins.io]
 



2016-11-13 11:23 GMT+01:00 buddy123 :



down votefavorite[stackoverflow.com] Im trying to create a cross-compilation 
job, that will build my code for both Windows & Linux. I have set up Windows & 
Linux jenkins nodes, and configured two jobs, one with 'windows' label to run 
on my Windows machine and the other with 'linux' label to run on my linux 
machine. I installed MultiJob plugin, and wrapped both jobs to run in parallel 
When both finishes successfully, I want to copy all the generated files and do 
operations on them In other words I want to copy the files from both jobs 
remote workspaces for further operations Can anyone suggest a way how to do it?

-- 
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/05639dc0-fce6-4ce7-9cc1-c39e95ca7498%40googlegroups.com[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].


 
-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CANWgJS6i%3DXazsb%3DzYyQ_21PXnJSQN5gNpBmJJycUZrOnwZXTaA%40mail.gmail.com[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/d70bc939-7416-4d89-9265-7b2d8631d301%40googlegroups.com[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].

-- 
You received this message because you are subscribed to a topic in the Google 
Groups "Jenkins Users" group.
To unsubscribe from this topic, visit 
https://groups.google.com/d/topic/jenkinsci-users/1OChk_e4A6Y/unsubscribe[groups.google.com].
To unsubscribe from this group and all its topics, 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.228E0093FFA4%4010.11.0.23[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].




-- 
You 

Re: Re-4: Copy files from remote Jenkins workspace

2016-11-14 Thread Eran Yanay
Discarding older builds means it discards my console output of these builds
as well, I wish to keep it.

On Mon, Nov 14, 2016 at 11:40 AM, Jovan Jevric  wrote:

> Do archive the artefacts elsewhere by running a post-build job, as you
> proposed. And simply parametrize your job that way, that elder jobs on your
> host are being deleted automatically. In other words - simply discard old
> builds, doing that is very simple.
>
>
>
>
> Original Message processed by david®
>
> *Re: Re-2: Copy files from remote Jenkins workspace* (14-Nov-2016 10:15)
> *From:*   buddy123 
> *To:*
> Jenkins Users 
>
> I'll look into pipeline, though it seems very complicated.
> Regarding artifacts, I've thought about it, but I cant figure out how to
> delete the artifacts once I finished the job, otherwise my disk space will
> get empty very quickly.
> Is it possilble to mark files as artifacts, pull them from slave, and then
> erase them?
> I want to keep the console output of every build though, just dont care
> about the artifacts because I store them elsewhere
>
>
> On Monday, November 14, 2016 at 11:12:08 AM UTC+2, jje wrote:
>>
>> What about archiving artefacts. On that way all output marked as
>> artefacts could be found on master so far, couldn't it?
>>
>>
>>
>> Original Message processed by david®
>>
>> *Re: Copy files from remote Jenkins workspace* (13-Nov-2016 15:39)
>> *From:*   Baptiste Mathus
>> *To:*
>> jenkins...@googlegroups.com
>>
>> Look for pipeline jobs. Might be far easier to achieve that.
>>
>>
>> https://jenkins.io/pipeline/getting-started-pipelines/[jenkins.io]
>> 
>>
>>
>> 2016-11-13 11:23 GMT+01:00 buddy123 :
>>
>>>
>>> down votefavorite[stackoverflow.com]
>>> 
>>>
>>> Im trying to create a cross-compilation job, that will build my code for
>>> both Windows & Linux. I have set up Windows & Linux jenkins nodes, and
>>> configured two jobs, one with 'windows' label to run on my Windows machine
>>> and the other with 'linux' label to run on my linux machine. I installed
>>> MultiJob plugin, and wrapped both jobs to run in parallel When both
>>> finishes successfully, I want to copy all the generated files and do
>>> operations on them In other words I want to copy the files from both jobs
>>> remote workspaces for further operations Can anyone suggest a way how to do
>>> it?
>>>
>>> --
>>> 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/ms
>>> gid/jenkinsci-users/05639dc0-fce6-4ce7-9cc1-c39e95ca7498%
>>> 40googlegroups.com[groups.google.com]
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/op
>>> tout[groups.google.com]
>>> 
>>> .
>>>
>>
>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to jenkinsci-use...@googlegroups.com.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/jenkinsci-users/CANWgJS6i%3DXazsb%3DzYyQ_21PXnJSQN5gNpBm
>> JJycUZrOnwZXTaA%40mail.gmail.com[groups.google.com]
>> 

Re-4: Copy files from remote Jenkins workspace

2016-11-14 Thread Jovan Jevric
Do archive the artefacts elsewhere by running a post-build job, as you 
proposed. And simply parametrize your job that way, that elder jobs on your 
host are being deleted automatically. In other words - simply discard old 
builds, doing that is very simple.






Original Message processed by david®  
Re: Re-2: Copy files from remote Jenkins workspace (14-Nov-2016 10:15)
From:   buddy123
To:Jenkins Users



I'll look into pipeline, though it seems very complicated. 
Regarding artifacts, I've thought about it, but I cant figure out how to delete 
the artifacts once I finished the job, otherwise my disk space will get empty 
very quickly.
Is it possilble to mark files as artifacts, pull them from slave, and then 
erase them?
I want to keep the console output of every build though, just dont care about 
the artifacts because I store them elsewhere


On Monday, November 14, 2016 at 11:12:08 AM UTC+2, jje wrote: 
What about archiving artefacts. On that way all output marked as artefacts 
could be found on master so far, couldn't it?




Original Message processed by david®  
Re: Copy files from remote Jenkins workspace (13-Nov-2016 15:39)
From:   Baptiste Mathus
To:jenkins...@googlegroups.com



Look for pipeline jobs. Might be far easier to achieve that. 

 
https://jenkins.io/pipeline/getting-started-pipelines/[jenkins.io]
 



2016-11-13 11:23 GMT+01:00 buddy123 :



down votefavorite[stackoverflow.com] Im trying to create a cross-compilation 
job, that will build my code for both Windows & Linux. I have set up Windows & 
Linux jenkins nodes, and configured two jobs, one with 'windows' label to run 
on my Windows machine and the other with 'linux' label to run on my linux 
machine. I installed MultiJob plugin, and wrapped both jobs to run in parallel 
When both finishes successfully, I want to copy all the generated files and do 
operations on them In other words I want to copy the files from both jobs 
remote workspaces for further operations Can anyone suggest a way how to do it?

-- 
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/05639dc0-fce6-4ce7-9cc1-c39e95ca7498%40googlegroups.com[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].


 
-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CANWgJS6i%3DXazsb%3DzYyQ_21PXnJSQN5gNpBmJJycUZrOnwZXTaA%40mail.gmail.com[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/d70bc939-7416-4d89-9265-7b2d8631d301%40googlegroups.com[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/DIIE.228E0093FFA4%4010.11.0.23.
For more options, visit https://groups.google.com/d/optout.


Re-4: Copy files from remote Jenkins workspace

2016-11-14 Thread Jovan Jevric
...post build job or post build step and executing a shell script or similar, 
which moves your artefacts.




Original Message processed by david®  
Re: Re-2: Copy files from remote Jenkins workspace (14-Nov-2016 10:15)
From:   buddy123
To:Jenkins Users



I'll look into pipeline, though it seems very complicated. 
Regarding artifacts, I've thought about it, but I cant figure out how to delete 
the artifacts once I finished the job, otherwise my disk space will get empty 
very quickly.
Is it possilble to mark files as artifacts, pull them from slave, and then 
erase them?
I want to keep the console output of every build though, just dont care about 
the artifacts because I store them elsewhere


On Monday, November 14, 2016 at 11:12:08 AM UTC+2, jje wrote: 
What about archiving artefacts. On that way all output marked as artefacts 
could be found on master so far, couldn't it?




Original Message processed by david®  
Re: Copy files from remote Jenkins workspace (13-Nov-2016 15:39)
From:   Baptiste Mathus
To:jenkins...@googlegroups.com



Look for pipeline jobs. Might be far easier to achieve that. 

 
https://jenkins.io/pipeline/getting-started-pipelines/[jenkins.io]
 



2016-11-13 11:23 GMT+01:00 buddy123 :



down votefavorite[stackoverflow.com] Im trying to create a cross-compilation 
job, that will build my code for both Windows & Linux. I have set up Windows & 
Linux jenkins nodes, and configured two jobs, one with 'windows' label to run 
on my Windows machine and the other with 'linux' label to run on my linux 
machine. I installed MultiJob plugin, and wrapped both jobs to run in parallel 
When both finishes successfully, I want to copy all the generated files and do 
operations on them In other words I want to copy the files from both jobs 
remote workspaces for further operations Can anyone suggest a way how to do it?

-- 
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/05639dc0-fce6-4ce7-9cc1-c39e95ca7498%40googlegroups.com[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].


 
-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CANWgJS6i%3DXazsb%3DzYyQ_21PXnJSQN5gNpBmJJycUZrOnwZXTaA%40mail.gmail.com[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/d70bc939-7416-4d89-9265-7b2d8631d301%40googlegroups.com[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/DIIE.22880093FFB3%4010.11.0.23.
For more options, visit https://groups.google.com/d/optout.


Re: Re-2: Copy files from remote Jenkins workspace

2016-11-14 Thread buddy123
I'll look into pipeline, though it seems very complicated.
Regarding artifacts, I've thought about it, but I cant figure out how to 
delete the artifacts once I finished the job, otherwise my disk space will 
get empty very quickly.
Is it possilble to mark files as artifacts, pull them from slave, and then 
erase them?
I want to keep the console output of every build though, just dont care 
about the artifacts because I store them elsewhere


On Monday, November 14, 2016 at 11:12:08 AM UTC+2, jje wrote:
>
> What about archiving artefacts. On that way all output marked as artefacts 
> could be found on master so far, couldn't it?
>  
>  
>
> Original Message processed by david®  
>  
> *Re: Copy files from remote Jenkins workspace* (13-Nov-2016 15:39)
> *From:*   Baptiste Mathus 
> *To:*
> jenkins...@googlegroups.com  
>  
> Look for pipeline jobs. Might be far easier to achieve that. 
>
>  
> https://jenkins.io/pipeline/getting-started-pipelines/[jenkins.io] 
> 
>  
>
> 2016-11-13 11:23 GMT+01:00 buddy123 >:
>
>>
>> down votefavorite[stackoverflow.com] 
>> 
>>  
>>
>> Im trying to create a cross-compilation job, that will build my code for 
>> both Windows & Linux. I have set up Windows & Linux jenkins nodes, and 
>> configured two jobs, one with 'windows' label to run on my Windows machine 
>> and the other with 'linux' label to run on my linux machine. I installed 
>> MultiJob plugin, and wrapped both jobs to run in parallel When both 
>> finishes successfully, I want to copy all the generated files and do 
>> operations on them In other words I want to copy the files from both jobs 
>> remote workspaces for further operations Can anyone suggest a way how to do 
>> it?
>>
>> -- 
>> 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/05639dc0-fce6-4ce7-9cc1-c39e95ca7498%40googlegroups.com[groups.google.com]
>>  
>> 
>> .
>> For more options, visit 
>> https://groups.google.com/d/optout[groups.google.com] 
>> 
>> .
>>
>
>  
>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to jenkinsci-use...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/CANWgJS6i%3DXazsb%3DzYyQ_21PXnJSQN5gNpBmJJycUZrOnwZXTaA%40mail.gmail.com[groups.google.com]
>  
> 
> .
> For more options, visit 
> https://groups.google.com/d/optout[groups.google.com] 
> 
> .
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@g

Re-2: Copy files from remote Jenkins workspace

2016-11-14 Thread Jovan Jevric
What about archiving artefacts. On that way all output marked as artefacts 
could be found on master so far, couldn't it?




Original Message processed by david®  
Re: Copy files from remote Jenkins workspace (13-Nov-2016 15:39)
From:   Baptiste Mathus
To:jenkinsci-users@googlegroups.com



Look for pipeline jobs. Might be far easier to achieve that. 



https://jenkins.io/pipeline/getting-started-pipelines/[jenkins.io]





2016-11-13 11:23 GMT+01:00 buddy123 :



down votefavorite[stackoverflow.com] Im trying to create a cross-compilation 
job, that will build my code for both Windows & Linux. I have set up Windows & 
Linux jenkins nodes, and configured two jobs, one with 'windows' label to run 
on my Windows machine and the other with 'linux' label to run on my linux 
machine. I installed MultiJob plugin, and wrapped both jobs to run in parallel 
When both finishes successfully, I want to copy all the generated files and do 
operations on them In other words I want to copy the files from both jobs 
remote workspaces for further operations Can anyone suggest a way how to do it?

-- 
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/05639dc0-fce6-4ce7-9cc1-c39e95ca7498%40googlegroups.com[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].




-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CANWgJS6i%3DXazsb%3DzYyQ_21PXnJSQN5gNpBmJJycUZrOnwZXTaA%40mail.gmail.com[groups.google.com].
For more options, visit https://groups.google.com/d/optout[groups.google.com].

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/DIIE.22F10093FE60%4010.11.0.23.
For more options, visit https://groups.google.com/d/optout.