File transfering on same domain

2015-07-14 Thread ozcaaan94
Hi! I am new to Jenkins. What am I want to do is, to copy files which are generated by a Jenkins build to other computers (same domain). https://lh3.googleusercontent.com/-Z1GGYLsoncI/VaSw1pWp8aI/Ae0/w2IiE-qE5vk/s1600/Untitled.jpg But I have no idea which approach to use. There are

Jenkins Email Server configuration

2015-07-14 Thread Martin Min
Hello, I am using the almost latest Jenkins release and have a question on configuration email notification. Why are there only two fields for this? I unchecked the SSL box for a quick test. and received this error message below. I put in my gmail user name and password. Failed to send out

Naming jobs : delimiters : hyphens vs. underscores

2015-07-14 Thread Brantone
I fully appreciate that this one's a preference thing, but curious if there's general consensus, and if any technical gotchas one way or another. (actually surprised search find anything) Cheers. -- You received this message because you are subscribed to the Google Groups Jenkins Users

Re: Jenkins Deploy plugin for Jboss 6.x class loading issue

2015-07-14 Thread Barun Vishwakarma
If you find the solution please let me know..I have also posted this question but i did not get any reply On Tue, Jul 14, 2015 at 10:28 AM, Prabaharan Gopalan prab...@gmail.com wrote: Hi Everyone, I'm trying to use the deploy plugin with Jenkins and trying to deploy to a remote JBoss 6.x.

How to add groovy elastic search jars to jenkins so a global groovy script can use them.

2015-07-14 Thread Rinaldo DiGiorgio
I have been trying to use the Elasticsearch plugins, There are two of them and both of them have issues and are orthogonal. One plugin saves the console log The other plugin saves the status information The Jenkins model for data storage was developed before scaling and multiple active

Re: Cannot run groovy on node

2015-07-14 Thread Brian Ray
https://lh3.googleusercontent.com/-lDGZF6rMsfw/VaU3CjhUYVI/AKU/9Cne6mRwG_I/s1600/SS-2015-05-04_14.48.33.png codehaus.org no longer hosts the Groovy project or its binaries. Configure an installer like this: On Tuesday, July 14, 2015 at 6:36:48 AM UTC-7, Gilad Baruchian wrote: I

Cannot run groovy on node

2015-07-14 Thread Gilad Baruchian
I tried to configure auto install like this : https://lh3.googleusercontent.com/-PX6I9ZNQtzs/VaUP6jUEZuI/BE0/9Us_iIKdWw8/s1600/err.png and i configured the job to use groovy-2-4-3, didn't work - did not try to install and did not find groovy. i installed groovy myself on the node, added

Re: Publish Over SSH after build failure

2015-07-14 Thread Bap
Quoting Barry Laffoy laff...@gmail.com: How can I force Publish Over SSH to work even if the build has been marked a failure? Use Send files or execute commands over SSH after the build runs in configuration section Build environment -- You received this message because you are subscribed

Re: Publish Over SSH after build failure

2015-07-14 Thread Barry Laffoy
Thanks for your response. Do you know if this configuration option is available in Jenkins Job Builder http://docs.openstack.org/infra/jenkins-job-builder/? I have otherwise implemented the publishing step by shelling out to rsync. On Tue, Jul 14, 2015 at 3:11 PM, Bap old_ho...@a1.org.uk wrote:

Re: Cannot run groovy on node

2015-07-14 Thread Brian Ray
Or rather, like this for 2.4.3: https://lh3.googleusercontent.com/-ezw537Qk3Ik/VaU4IcAmrII/AKg/8jKPwbSn0wo/s1600/SS-2015-07-14_09.20.05.png On Tuesday, July 14, 2015 at 9:23:05 AM UTC-7, Brian Ray wrote:

Re: Manage a set of projects

2015-07-14 Thread Khai Do
There are lots of suggestions to this topic in thread https://groups.google.com/d/msg/jenkinsci-users/OnKpb4Iu0YY/1y_jH3-FVcQJ -- 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,

Re: Jenkinsapi Python Login Seesions

2015-07-14 Thread Khai Do
Can you tell if this is a problem with your jenkins setup or is it a problem with jenkinsapi? We use python-jenkins (https://pypi.python.org/pypi/python-jenkins) and have not experienced this issue, so you might want to give that one a try. On Thursday, July 9, 2015 at 11:34:49 PM UTC-7,

Failing to iterate list with workflow

2015-07-14 Thread David Resnick
I'm trying create jobs to run in parallel in a workflow with this script: def branches = [:] def jobs = [ 'job-1' ] for (job in jobs) { branches[job] = { build job: job } } parallel branches This fails with the below (though it doesn't fail when 'parallel branches' is commented out). How

Re: Cannot run groovy on node

2015-07-14 Thread Daniel Beck
It should only be the UI label by now (pending a new Groovy plugin release), the update center provides the correct Bintray URLs: http://jenkins.mirror.isppower.de/updates/updates/hudson.plugins.groovy.GroovyInstaller.json On 14.07.2015, at 18:26, Brian Ray be_...@sbcglobal.net wrote: Or

Re: Release notes from XX previous build change logs in Markdown

2015-07-14 Thread Brantone
I created this Groovy script, which relies on PARENT_JOB_NAME and PARENT_JOB_NUMBER as params, but could be be better expanded to look at it's parent directly rather than relying on those. Progresses up the tree of triggered jobs, collecting change notes, then pumps it all into a new param

Re: workflow plugin -- dynamically select specifc slave nodes in for loop

2015-07-14 Thread Owen B. Mehegan
Oh, thanks! I had seen that example code before but misunderstood what it was doing. Now it makes sense, and I have it working. On Monday, July 13, 2015 at 5:24:18 PM UTC-7, Anshu Arya wrote: Whoops, this is the code: def parTask = [:] for(int i = 0; i all_nodes.size(); i++) { def

Re: Extending the json/xml API

2015-07-14 Thread Khai Do
We use the python-jenkins (https://pypi.python.org/pypi/python-jenkins) library to access build info, the output is in json. It's open source (apache license) so you can just extend it to grab additional meta data about each build. On Tuesday, June 23, 2015 at 3:51:54 PM UTC-7,

Re: Jenkins Multi master setup

2015-07-14 Thread Khai Do
Yes, we use it and it's been working pretty well for us. Do you have a specific question? On Monday, June 15, 2015 at 6:44:48 AM UTC-7, Subbu wrote: Hi Group, Has anyone used Jenkins Gearman plug-in for Multi master deployments? Any pointers are appreciated Thanks, Subbu -- You

Re: Jenkins Remote Access

2015-07-14 Thread Khai Do
We use the python-jenkins (https://pypi.python.org/pypi/python-jenkins) library to automate our builds. It can do what you want and it's a lot easier than using the REST APIs directly. Take a look at the example and build_job() method. On Wednesday, June 10, 2015 at 7:11:24 AM UTC-7, Alex

Re: Multiple projects, same commands

2015-07-14 Thread Khai Do
You may want to take a look at the jenkins-job-builder (https://pypi.python.org/pypi/jenkins-job-builder) project. It's specifically designed to simply your task. We use it to manage ~6000 jobs. Many of them have similar patterns just like your use case. -- You received this message

Re: Grouping job runs dynamically

2015-07-14 Thread Khai Do
We use python-jenkins (https://pypi.python.org/pypi/python-jenkins) to automate our jenkins. it supports management of jobs, builds and views so I think it might be useful for you to take a look at that library. I'm thinking you might be able to use it as a helper to slap together a script

Re: Recommend ways to create an inventory of nodes?

2015-07-14 Thread Khai Do
We use the python-jenkins (https://pypi.python.org/pypi/python-jenkins) library to get node and job info. Take a look at the get_nodes(), get_node_config() and get_node_info() methods. On Thursday, June 25, 2015 at 10:27:45 PM UTC-7, Heinonen, Antti wrote: Hi, Can anybody recommend

Re: jenkins and code analysis

2015-07-14 Thread Ullrich Hafner
The warnings-plugin has several parsers for the .NET platform: https://wiki.jenkins-ci.org/display/JENKINS/Warnings+Plugin Am 13.07.2015 um 15:58 schrieb Carlos Lucas clu...@xmltravelgate.com: I forgot to say that my code is on .NET C# and VB -- You received this message because you are

Re: How to copy jobs from existing Jenkins profile to the upgraded Jenkins

2015-07-14 Thread Khai Do
We automate and replicate jenkins jobs by using the jenkins-job-builder (https://pypi.python.org/pypi/jenkins-job-builder). I'm not sure there's a good solution to automating and replicating jenkins plugins. I think the only thing you can do is to copy the all of the *.hpi files, these are

Re: Naming jobs : delimiters : hyphens vs. underscores

2015-07-14 Thread James Nord
On 14/07/2015 08:44, Brantone wrote: I fully appreciate that this one's a preference thing, but curious if there's general consensus, and if any technical gotchas one way or another. (actually surprised search find anything) if you use an underscore then the link will contain the underscore.

Using Jenkins to manage my target devices

2015-07-14 Thread Chandra Kumar
My Company is developing embedded devices, after successful build we wish to deploy it to certain devices which should also be managed by Jenkins. Is there any plugins to make Jenkins manage my devices within his database (maybe via plugin)? or is there any other solution? Thanks, Chandra Kumar