Re: Request for hosting: CPWR-PDS-download

2015-12-23 Thread cpwr_jenkins
Hi Andrew, Per my Product Manager: While our plugins today are very similar we will be enhancing them to provide additional specific functionality for their representative source code management systems. These are unique platforms with different syntax/requirements. -- View this message in co

Re: subclasses of Serialization

2015-12-23 Thread Slide
I disagree, it would be a pain to have to mark everything that could be serializable with the interface. It works quite well right now as is. On Tue, Dec 22, 2015, 12:39 Raquel Pau Fernández wrote: > Thanks Jesse for your feedback :-) > > I really appreciate your explanation. I will remove from

Re: Request for hosting: CPWR-PDS-download

2015-12-23 Thread cpwr_jenkins
After discussing it with the other developers, we decided to combine the two plugins into one. We will submit a new hosting request when it's done. Thanks for the input guys. -- View this message in context: http://jenkins-ci.361315.n4.nabble.com/Request-for-hosting-CPWR-PDS-download-tp4785068

Re: automatic behavior after job fails on a node

2015-12-23 Thread Jay Berkenbilt
Ultimately I ended up getting this working by using https://wiki.jenkins-ci.org/display/JENKINS/Global+Post+Script+Plugin with a one line change, which will be in 1.1.0, to allow the hook to run on aborted jobs as well as others. These other plugins were very helpful. I was mostly through writing a

Re: create-text-file plugin - New hosting reuest

2015-12-23 Thread Sanketh P B
Finally I was able to release the plugin, lost few version numbers, thanks a lot. https://wiki.jenkins-ci.org/display/JENKINS/Text+File+Operations+Plugin On Tuesday, December 22, 2015 at 5:43:53 AM UTC+5:30, Sanketh P B wrote: > > Hello All, > > Any hints to solve this issue? > > Thanks, > Sanket

Re: New plugin hosting request

2015-12-23 Thread Sanketh P B
Dear Team, There is no update from the plugin developer/maintainer, please let me know how to proceed here. Thanks, Sanketh On Tuesday, December 15, 2015 at 9:38:27 PM UTC+5:30, Sanketh P B wrote: > > Sure, I agree with you. We could enhance the existing plugin. > @Leonardo Kobus: Please provi

Automatic build and deploy of plugin (CI style)

2015-12-23 Thread Gavin Mogan
Hey everyone I can't decide if this belongs on the user list or the dev list but trying here first. Has anyone come up with a way (maven or jenkins) to automatically deploy a plugin to a jenkins instance? I want to setup a nice demo server that always has the latest version of our plugin, but

Re: Automatic build and deploy of plugin (CI style)

2015-12-23 Thread Mark Waite
jenkins-cli.jar includes the install-plugin command which can install a plugin. It can also do a safe restart of the Jenkins server (may be needed after the plugin installation). Mark Waite On Wed, Dec 23, 2015 at 12:39 PM Gavin Mogan wrote: > Hey everyone > > I can't decide if this belongs on

Re: CFLint plugin deployment failed?

2015-12-23 Thread Ryan Eberly
Thanks Chris, That worked! On Saturday, December 19, 2015 at 7:27:02 PM UTC-5, Christopher wrote: > > Take a look at point #2 on the list here: > > https://wiki.jenkins-ci.org/display/JENKINS/Hosting+Plugins#HostingPlugins-Help%5C%21Mypluginisnotshowingupintheupdatecenter. > > > > Regards,

Re: New plugin hosting request

2015-12-23 Thread Daniel Beck
Given that it's the end of the year I'd prefer to wait a bit longer to give Leonardo time to respond even if on vacation. > On 23.12.2015, at 19:09, Sanketh P B wrote: > > Dear Team, > > There is no update from the plugin developer/maintainer, please let me know > how to proceed here. > > Th

Re: Request for hosting: CPWR-Endevor-download

2015-12-23 Thread Daniel Beck
For posterity, the devs responded on the other thread and decided to merge these plugins. So no action needs to be taken here. > On 14.12.2015, at 15:41, cpwr_jenkins wrote: > > We have changed the artifacts to compuware-pds-download and > compuware-endevor-download. Please let us know if there

Re: Request for hosting: CPWR-PDS-download

2015-12-23 Thread Daniel Beck
Thanks for letting us know. Please note that future hosting requests will be handled through JIRA. https://wiki.jenkins-ci.org/display/JENKINS/Hosting+Plugins#HostingPlugins-Requesthosting > On 23.12.2015, at 17:54, cpwr_jenkins wrote: > > After discussing it with the other developers, we deci

Re: subclasses of Serialization

2015-12-23 Thread Kanstantsin Shautsou
On Tuesday, December 22, 2015 at 10:39:25 PM UTC+3, Raquel Pau Fernández wrote: > > Thanks Jesse for your feedback :-) > > I really appreciate your explanation. I will remove from my walkmod > configuration the "removal option" of the serialization methods. Tomorrow, > I will try to send agai

Parsing .travis.yml or similar build configs

2015-12-23 Thread Jim Lim
Hello! I am trying to figure out how to move more build logic out of Jenkins, and into configuration files that are committed in the git repository with the rest of the code. I believe I have seen ".jenkins" directories before in some repositories. Does anyone know of plugins (other than the Job D

Re: Parsing .travis.yml or similar build configs

2015-12-23 Thread Craig Rodrigues
The main Jenkins developers are putting a lot of work into the Workflow plugin ( https://wiki.jenkins-ci.org/display/JENKINS/Workflow+Plugin ). Workflow scripts use the Groovy language. There are some examples here: https://github.com/jenkinsci/workflow-examples -- Craig On Wed, Dec 23, 2015

Plugin wiki page problem - artifact/plugin id vs repo/issue URL

2015-12-23 Thread farmgeek4life
Wiki page: https://wiki.jenkins-ci.org/display/JENKINS/Negotiate+SSO+for+Windows My plugin page has broken links in the auto-generated "Jenkins-plugin-info:pluginId=..." block, because of discrepancies between the name of the repository/issue tracker and the artifactId set in the pom.xml fi

Re: Automatic build and deploy of plugin (CI style)

2015-12-23 Thread Baptiste Mathus
Another solution can be to use Docker. Your Dockerfile would be something like: FROM jenkins:1.625.3 ADD yourplugin.hpi /usr/share/jenkins/ref/plugins/yourplugin.jpi Then build [ && push ] && run. My 2 cents. 2015-12-23 20:59 GMT+01:00 Mark Waite : > jenkins-cli.jar includes the install-plugi

Re: Automatic build and deploy of plugin (CI style)

2015-12-23 Thread Gavin Mogan
I ended up going with jenkins-cli. Also forgot I could use cli remotely (But wasn't necessary in this case). Docker would totally be a solution if I was using docker to start with. On Wed, Dec 23, 2015 at 11:15 PM, Baptiste Mathus wrote: > Another solution can be to use Docker. Your Dockerfile

Re: Automatic build and deploy of plugin (CI style)

2015-12-23 Thread Mark Waite
If a Docker container is an option, then you might consider https://github.com/jenkinsci/docker (I think that is the likely source of jenkins:1.625.3) or might even look at https://github.com/MarkEWaite/docker/tree/master-with-plugins for a derivative that reduces Docker instance build time by keep