Re: [GSOC 2018] [Student Introduction] Simple Pull-Request Job Plugin

2018-02-17 Thread Surya Gaddipati
Hi Oleg, Thank you. I've added myself to the google doc. On Wednesday, February 14, 2018 at 6:43:04 PM UTC-6, Andrei Vînătoru wrote: > > Hello Everyone, > > My name is Andrei Vinatoru, and I am currently in the 4th year at the > Faculty of Automatic Control and Computer Science, at Politehnica

Re: [GSOC 2018] [Student Introduction] Simple Pull-Request Job Plugin

2018-02-16 Thread Surya Gaddipati
Hi Martin, Yes. I would would def like to be a co mentor on this. Let me know if I need to complete any steps to get that going from my side. Surya On Wednesday, February 14, 2018 at 6:43:04 PM UTC-6, Andrei Vînătoru wrote: > > Hello Everyone, > > My name is Andrei Vinatoru, and I am

Re: [GSOC 2018] [Student Introduction] Simple Pull-Request Job Plugin

2018-02-15 Thread Surya Gaddipati
Hey I worked on something similar ( actually exactly the same thing looks like) https://github.com/groupon/DotCi I would like if to help you if you need anything with your project On Wednesday, February 14, 2018 at 6:43:04 PM UTC-6, Andrei Vînătoru wrote: > > Hello Everyone, > > My name is

Re: Accelerating Jenkins development with Jenkins Essentials

2018-02-08 Thread Surya Gaddipati
Hi, This is exciting new development. Couple of comments 1. Packaging supervisord with another executable is a docker anti pattern. I assume any serious jenkins deployment is on a scheduler like swarm/kubernetes ect where supervisord is not necessary. 2. Scripting should be done via

Re: Plugin hosting request: Docker Swarm plugin

2018-01-31 Thread Surya Gaddipati
Created an issue: https://issues.jenkins-ci.org/browse/HOSTING-505 Thank you for pointing me in the right direction. On Wednesday, January 31, 2018 at 9:01:00 AM UTC-6, Surya Gaddipati wrote: > > > repo: https://github.com/suryagaddipati/jenkins-docker-swarm-plugin > > I know the

Plugin hosting request: Docker Swarm plugin

2018-01-31 Thread Surya Gaddipati
repo: https://github.com/suryagaddipati/jenkins-docker-swarm-plugin I know there are existing docker plugins but we needed something that takes advantage of docker swarm scheduler to set reservations, limits ect. Let me know what you guys think. Thanks -- You received this message

Re: lazy loading build inside queue lock

2017-01-19 Thread Surya Gaddipati
Hi oliver, Yes thats the downside of 'preloading' but it would prevent Jenkins from completely freezing at unexpected times . There was some talk of writing lock free implementation of queue. Wondering if that is still on cards . On Wednesday, January 18, 2017 at 6:53:03 PM UTC-6, Surya

lazy loading build inside queue lock

2017-01-18 Thread Surya Gaddipati
Seems like jenkins lazy loads builds inside a queue lock which in turn freezes jenkins because so many places inside jenkins try to lock queue. Is recommended to force lazyload on *all* jobs after jenkins startup to avoid this kind of scenario ?

Disabling node monitors for single use computer

2016-11-15 Thread Surya Gaddipati
Hi, I am running into an issue which I think is related to my single use computer plugin ( https://github.com/suryagaddipati/jenkins-docker-swarm-plugin), which basically creates one computer/build and deletes it after its done. This is resulting in accumulation of thousands of node monitor

Re: True High Availability/load balancing for Jenkins. Its possible!!

2016-11-01 Thread Surya Gaddipati
downfall of Jenkins that's stopping it from turning into a serious CD tool. --Surya On Monday, October 31, 2016 at 12:49:55 PM UTC-5, Surya Gaddipati wrote: > > You need the following ingredients > > 1. DbBacked builds ( https://github.com/groupon/DotCi ) , i.e no in > me

True High Availability/load balancing for Jenkins. Its possible!!

2016-10-31 Thread Surya Gaddipati
You need the following ingredients 1. DbBacked builds ( https://github.com/groupon/DotCi ) , i.e no in memory build data. 2. NFS mount for 'jobs' folder to share console output, artifacts ect. 3. Message Passing between various masters ( eg: build queuing, build abort, queue abort ect )

Re: Adding a node with Queue.withLock in Jenkins

2016-10-27 Thread Surya Gaddipati
Thanks Stephen. I appreciate your quick responses. On Monday, October 17, 2016 at 9:53:23 AM UTC-5, Surya Gaddipati wrote: > > Hi all, > > I am working on plugin > <https://github.com/suryagaddipati/jenkins-docker-swarm-plugin> that > creates a single use computer/node

Re: Adding a node with Queue.withLock in Jenkins

2016-10-26 Thread Surya Gaddipati
, 2016 at 9:53:23 AM UTC-5, Surya Gaddipati wrote: > > Hi all, > > I am working on plugin > <https://github.com/suryagaddipati/jenkins-docker-swarm-plugin> that > creates a single use computer/node whose lifecycle is tied to a single > build . I am cur

Re: Adding a node with Queue.withLock in Jenkins

2016-10-18 Thread Surya Gaddipati
situation. On Monday, October 17, 2016 at 9:53:23 AM UTC-5, Surya Gaddipati wrote: > > Hi all, > > I am working on plugin > <https://github.com/suryagaddipati/jenkins-docker-swarm-plugin> that > creates a single use computer/node whose lifecycle is tied to a single > bui

Re: Adding a node with Queue.withLock in Jenkins

2016-10-18 Thread Surya Gaddipati
tch to core that adds nodes to jenkins without unnecessary queue locking. -- Surya On Tuesday, October 18, 2016 at 10:20:06 AM UTC-5, Jesse Glick wrote: > > On Mon, Oct 17, 2016 at 5:47 PM, Surya Gaddipati > <suryap...@gmail.com > wrote: > > yes like that, there are

Re: Adding a node with Queue.withLock in Jenkins

2016-10-18 Thread Surya Gaddipati
Hi Stephen, I really appreciate your quick responses, >> It's when you then end up down at https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/hudson/model/Queue.java#L1525-L1526 that the issues start cropping up. I am not quite sure what you mean 'issues start cropping up'

Re: Adding a node with Queue.withLock in Jenkins

2016-10-17 Thread Surya Gaddipati
ecific cache on overlayfs, labels are defined on global instead of local, dashboards ect. On Monday, October 17, 2016 at 2:14:37 PM UTC-5, Jesse Glick wrote: > > On Mon, Oct 17, 2016 at 10:53 AM, Surya Gaddipati > <suryap...@gmail.com > wrote: > > I am working on plugi

Re: Adding a node with Queue.withLock in Jenkins

2016-10-17 Thread Surya Gaddipati
<https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/hudson/model/Executor.java#L351> ? On Monday, October 17, 2016 at 1:54:11 PM UTC-5, Stephen Connolly wrote: > > > > On Monday 17 October 2016, Surya Gaddipati <suryap...@gmail.com> wrote

Re: Adding a node with Queue.withLock in Jenkins

2016-10-17 Thread Surya Gaddipati
Thanks Stephen for your quick response. > as otherwise the scheduling will blow up in your face. Curious, What do you mean by this ? thanks again. On Monday, October 17, 2016 at 9:53:23 AM UTC-5, Surya Gaddipati wrote: > > Hi all, > > I am working on plugin > &

Re: Adding a node with Queue.withLock in Jenkins

2016-10-17 Thread Surya Gaddipati
ooops forgot to mention. Ditto for `removeNode` method. On Monday, October 17, 2016 at 9:53:23 AM UTC-5, Surya Gaddipati wrote: > > Hi all, > > I am working on plugin > <https://github.com/suryagaddipati/jenkins-docker-swarm-plugin> that > creates a single use compu

Adding a node with Queue.withLock in Jenkins

2016-10-17 Thread Surya Gaddipati
Hi all, I am working on plugin that creates a single use computer/node whose lifecycle is tied to a single build . I am currently adding the node like this Jenkins.getInstance().addNode(node); However that method requires

jenkins docker swarm plugin

2016-06-19 Thread Surya Gaddipati
I wanted to announce and possibly get some feedback on my docker swarm plugin Here it is : https://github.com/suryagaddipati/jenkins-docker-swarm-plugin I know that there are many existing docker plugins, but none of them suited my needs because. 1. Not written for swarm. eg: I want build

Re: [Blue Ocean] New UX project for jenkins

2016-05-30 Thread Surya Gaddipati
This is great work. Congrats. SSE is nice touch that would make Jenkins so much more responsive. On Thursday, May 26, 2016 at 5:44:06 PM UTC-5, Michael Neale wrote: > > I just opened https://issues.jenkins-ci.org/browse/HOSTING-98 for the > so-called "blueocean" plugin. > > You may have

Re: Job configuration page navigation with Tabs - Jenkins 2.0

2016-01-22 Thread Surya Gaddipati
Great Stuff Tom. I was worried about loosing cmd+f but there is a find box. One suggestion I have would be to auto complete the find box so user doesn't have to look through what is highlighted. Surya On Thursday, January 21, 2016 at 2:11:06 PM UTC-6, Tom Fennelly wrote: > > I've been

Re: Plugin hosting request. codeclimate plugin.

2016-01-05 Thread Surya Gaddipati
Hi Daniel, Yes definitely. I think codeclimate is great. Surya On Thursday, November 26, 2015 at 9:04:07 PM UTC-6, Surya Gaddipati wrote: > > > repo: https://github.com/suryagaddipati/codeclimate-plugin > github username: suryagaddipati > > Thank you. > -- You received

Re: Plugin hosting request. codeclimate plugin.

2016-01-05 Thread Surya Gaddipati
Thanks Daniel. On Thursday, November 26, 2015 at 9:04:07 PM UTC-6, Surya Gaddipati wrote: > > > repo: https://github.com/suryagaddipati/codeclimate-plugin > github username: suryagaddipati > > Thank you. > -- You received this message because you are subscribed to the Go

Re: Plugin Hosting Request: Violations Reboot Plugin

2016-01-03 Thread Surya Gaddipati
Can't we let people do what they want instead of forcing people to deal with code they don't want to. We are actively harming jenkins community by overly policing plugins. Not only is this heavy handed process extremely inefficient ( I stopped caring about my plugin after begging for it to be

Re: Parsing .travis.yml or similar build configs

2015-12-24 Thread Surya Gaddipati
We've have been using this https://github.com/groupon/DotCi Workflow plugin is a good option . On Wednesday, December 23, 2015 at 10:13:58 PM UTC-6, Jim Lim wrote: > > Hello! > > I am trying to figure out how to move more build logic out of Jenkins, and > into configuration files that are

Re: Proposal: forbid direct commits to master for core

2015-12-21 Thread Surya Gaddipati
>Jenkinsci project model is bazaar. I see no any reasons for enforcing somebody unrelated to reasons why plugin was created causing delays by asking why some company needs host some plugin. Somebody created plugin and share for mass usage, you may use it or not. Delays for development ends

Re: (another) docker slaves plugin - review request

2015-12-15 Thread Surya Gaddipati
So, do you agree that cloud api is not good enough for docker containers ? On Sunday, December 13, 2015 at 12:53:44 PM UTC-6, Surya Gaddipati wrote: > > This is not a hosting request. I am hoping to get some feedback on the > plugin and see if its worth hosting/merging into othe

Re: (another) docker slaves plugin - review request

2015-12-15 Thread Surya Gaddipati
> Do you think that the cloud API *ought* to be good enough for docker containers ? Not quite sure what you mean. But yea cloud api should support single use throwaway slaves that are tied to a single build. On Sunday, December 13, 2015 at 12:53:44 PM UTC-6, Surya Gaddipati wr

Jenkins Core PR - review

2015-12-15 Thread Surya Gaddipati
Hi All, Is there anything I can do get this PR reviewed. https://github.com/jenkinsci/jenkins/pull/1934 This is blocking us from running Load Balanced Jenkins ( without shared disk). Surya -- You received this message because you are subscribed to the Google Groups "Jenkins Developers"

Re: (another) docker slaves plugin - review request

2015-12-15 Thread Surya Gaddipati
12:53:44 PM UTC-6, Surya Gaddipati wrote: > > This is not a hosting request. I am hoping to get some feedback on the > plugin and see if its worth hosting/merging into other plugins. > > Details are in the readme of the project > https://github.com/suryagaddipati/jenkins-docker-s

Re: (another) docker slaves plugin - review request

2015-12-15 Thread Surya Gaddipati
On Sunday, December 13, 2015 at 12:53:44 PM UTC-6, Surya Gaddipati wrote: > > This is not a hosting request. I am hoping to get some feedback on the > plugin and see if its worth hosting/merging into other plugins. > > Details are in the readme of the project > https://github.com/su

Re: (another) docker slaves plugin - review request

2015-12-15 Thread Surya Gaddipati
kins Cloud Api. Surya On Sunday, December 13, 2015 at 12:53:44 PM UTC-6, Surya Gaddipati wrote: > > This is not a hosting request. I am hoping to get some feedback on the > plugin and see if its worth hosting/merging into other plugins. > > Details are in the readme of the proj

Re: (another) docker slaves plugin - review request

2015-12-14 Thread Surya Gaddipati
Can these two approaches be integrated together ? Surya On Sunday, December 13, 2015 at 12:53:44 PM UTC-6, Surya Gaddipati wrote: > > This is not a hosting request. I am hoping to get some feedback on the > plugin and see if its worth hosting/merging into other plugins. > > Deta

Re: Plugin hosting request. codeclimate plugin.

2015-12-13 Thread Surya Gaddipati
? - Fixed 404 on readme page, looks like codeclimate removed that page. - Added more description and screenshots to readme. Surya On Thursday, November 26, 2015 at 9:04:07 PM UTC-6, Surya Gaddipati wrote: > > > repo: https://github.com/suryagaddipati/codeclimate-plugin

(another) docker slaves plugin - review request

2015-12-13 Thread Surya Gaddipati
This is not a hosting request. I am hoping to get some feedback on the plugin and see if its worth hosting/merging into other plugins. Details are in the readme of the project https://github.com/suryagaddipati/jenkins-docker-slaves Pls, let me know if you have any questions. Surya -- You

Re: Plugin hosting request. codeclimate plugin.

2015-12-13 Thread Surya Gaddipati
UTC-6, Surya Gaddipati wrote: > > > repo: https://github.com/suryagaddipati/codeclimate-plugin > github username: suryagaddipati > > Thank you. > -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscri

Re: Plugin hosting request. codeclimate plugin.

2015-12-12 Thread Surya Gaddipati
Hi Christopher, I went through those steps and I've added the missing license file . Please let me know if I am missing anything else. Surya On Thursday, November 26, 2015 at 9:04:07 PM UTC-6, Surya Gaddipati wrote: > > > repo: https://github.com/suryagaddipati/codeclima

Re: Plugin hosting request. codeclimate plugin.

2015-12-12 Thread Surya Gaddipati
r 26, 2015 at 9:04:07 PM UTC-6, Surya Gaddipati wrote: > > > repo: https://github.com/suryagaddipati/codeclimate-plugin > github username: suryagaddipati > > Thank you. > -- You received this message because you are subscribed to the Google Groups "Jenkins Developers&qu

Re: Plugin hosting request. codeclimate plugin.

2015-12-02 Thread 'Surya Gaddipati' via Jenkins Developers
Hi Oleg, Yes. I should be able to fix these issues by tomorrow. Still need to get back into post holiday swing of things On Thursday, November 26, 2015 at 9:04:07 PM UTC-6, Surya Gaddipati wrote: > > > repo: https://github.com/suryagaddipati/codeclimate-plugin > git

Plugin hosting request. codeclimate plugin.

2015-11-26 Thread Surya Gaddipati
repo: https://github.com/suryagaddipati/codeclimate-plugin github username: suryagaddipati Thank you. -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Jenkins 2.0 proposal

2015-10-06 Thread Surya Gaddipati
Regarding backend solution. We use DotCi and store all builds/logs in mongodb.( Still experimenting how to properly store logs in the db, but we have it working on staging). The only things on disks are plugins and folder config.xml ( because of this issue

Re: Jenkins 2.0 proposal

2015-10-06 Thread Surya Gaddipati
> > >Surya, in your case has being DB backed helped load times? (If you can > say) > Yes, definitely. That was the original impetus behind moving stuff into the database. We went from > 45 mins load time to < 1 min. -- You received this message because you are subscribed to the Google

Re: Jenkins 2.0 proposal

2015-10-06 Thread Surya Gaddipati
> > >Oh that is quite interesting. By react you mean react from facebook? > Yep. Found it really easy to do server side rendering with Nashorn. >We purposely stayed away from using the likes of React/Polymer etc in the install wizard. We feel it would be too "controversial" to use in

Re: Jenkins 2.0 proposal

2015-09-29 Thread Surya Gaddipati
Great post Kohsuke. Thank you for creating Jenkins. >Time to bump up the system requirement to Java 8 and Servlet 3.0. Let's think about what this would enable to users. I've been using Java 8 for serverside rendering of react fontend for dotci using Nashorn. It has been working beautifully.

Re: Modularized JavaScript code in Jenkins Core .... how about it?

2015-09-06 Thread Surya Gaddipati
Hi Tom, I've been packaging all kinds of js stuff with webpack. Avoids all kinds of problems with globals ect that you described. I am not quite sure if we need to invent a jenkins specific solution here. Here is an example using elm https://github.com/DotCi/DotCiPipelineViewer example

Re: How to fetch Cobertura LineCoverage in groovy

2015-08-17 Thread Surya Gaddipati
What you are doing seems right. Looks like the build in question did not run cobertura . On Monday, August 17, 2015 at 8:11:32 AM UTC-5, Prasanth Thampi wrote: My groovy script is failing due to null pointer error. can any one help me in understanding what to be fixed ~~~

Re: Reviving Office Hours

2015-07-19 Thread Surya Gaddipati
+1 for lightning talks . Thats a great idea. Surya On Friday, July 17, 2015 at 7:26:59 AM UTC-5, Daniel Beck wrote: Hi everyone, I plan to revive Office Hours, the bi-weekly meeting of Jenkins users and developers to learn more about Jenkins. What is 'Office Hours,' you ask? Quoting

Re: [New Plugin Request] - Amazon AWS Device Farm

2015-07-18 Thread Surya Gaddipati
This is amazing. On Friday, July 17, 2015 at 4:43:40 PM UTC-5, Andrew Hawker wrote: Requesting a Github fork for a new plugin. Name: aws-device-farm-plugin Github: https://github.com/awslabs/aws-device-farm-jenkins-plugin Github User: ahawker Jenkins-CI.org User: ahawker Description: Test

Re: Need help publishing plug-in

2015-07-11 Thread Surya Gaddipati
It usually takes a while before its shows up in the update center. On Saturday, July 11, 2015 at 5:10:35 AM UTC-5, Peter Blume wrote: Hi community, i need help releasing the sasunit-plugin. I use $ mvn release:prepare release:perform -Dusername=... -Dpassword=... to start the release

Re: Loading items from database instead of disk

2015-07-10 Thread Surya Gaddipati
, July 10, 2015 at 4:28:02 PM UTC-5, Surya Gaddipati wrote: Hi All, I am trying to load an item from database instead of disk during my plugin's startup , but jenkins seems to assuming that everything is being loaded from the disk and removing my dynamically loaded items https://github.com

Loading items from database instead of disk

2015-07-10 Thread Surya Gaddipati
Hi All, I am trying to load an item from database instead of disk during my plugin's startup , but jenkins seems to assuming that everything is being loaded from the disk and removing my dynamically loaded items

Re: Merge two plugins functionality

2015-07-02 Thread Surya Gaddipati
Hello Ahsan, You could create a new plugin with dependencies on the two plugins and do the orchestration in that plugin . Your question feels a little vague to give you an exact answer. On Thursday, July 2, 2015 at 10:11:45 AM UTC-5, Ahasan Habib wrote: Hi, In a scenario I need to call a

Re: embed svg created by d3 in plug-in

2015-07-01 Thread Surya Gaddipati
Jenkins serves HTML pages. you should be able to embed your svg in jelly files. On Tuesday, June 30, 2015 at 4:34:16 PM UTC-5, Annie Jiao wrote: is it possible to create an svg graphic (non-interactive) using D3 and embedding the result in a jenkins plug-in? I do plan on making different

Re: revisit ToolInstallation (Default)

2015-07-01 Thread Surya Gaddipati
Hi Nicolas, I am a little confused as to what 'ToolInstalation' means. This might obviously my personal opinion. But Jenkins feels like its too tied to the java world . JDK/Maven versions ect should *not* be part jenkins core. Lots of companies have/are moving from monolithic java/ruby

Re: DotCi build in a continuous delivery pipeline - with downstream jobs

2015-05-22 Thread Surya Gaddipati
Hi Prabha, you can add a downstream job plugin in your .ci.yml . It is kind of an undocumented feature, I have it in my todo list to update the docs. plugins: - downstream_job: orgName/repoName: BRANCH: $DOTCI_BRANCH SHA: $DOTCI_SHA DOTCI_STEP: 'smoke tests' On Tuesday, May 19, 2015 at

Re: How to check if plugin is running in development mode

2015-02-22 Thread Surya Gaddipati
Thanks Daniel. That did the trick. On Saturday, February 21, 2015 at 3:15:21 PM UTC-6, Surya Gaddipati wrote: Is there way to check to plugin is launched via mvn hpi:run I found this property https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/hudson/Main.java#L221

How to check if plugin is running in development mode

2015-02-21 Thread Surya Gaddipati
Is there way to check to plugin is launched via mvn hpi:run I found this property https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/hudson/Main.java#L221 But it env variable is not set causing it return false all the time. -- You received this message because you are

Re: Jenkins UX

2015-02-18 Thread Surya Gaddipati
Oh wait KK responded to my servlet 3.0 upgrade thread. Its on the roadmap. On Wednesday, February 18, 2015 at 10:27:12 AM UTC-6, Gus Reiber wrote: At the end of last summer, my friend and co-worker, Tom Fennelly https://github.com/tfennelly, along with the help of Kevin Burke

Re: Jenkins servlet 3.0 upgrade

2015-02-18 Thread Surya Gaddipati
Awesome. Really looking forward to this. On Thursday, February 5, 2015 at 11:58:15 AM UTC-6, Surya Gaddipati wrote: There was some discussion about it last year http://jenkins-ci.org/content/thinking-about-moving-servlet-30 I was just wondering if this is something that is still being

Re: Jenkins UX

2015-02-18 Thread Surya Gaddipati
Poor UI performance is the no1 complaint I get from our devs when I talk to them about jenkins. I would be really really interested in killing ajax polling all over jenkins UI and using servlet 3.0 for async stuff. I posted couple of threads earlier about Servlet 3.0 upgrade but it didn't

Re: Request hosting for Kubernetes plugin

2015-02-13 Thread Surya Gaddipati
Interesting work. Thanks for making this plugin. On Wednesday, February 11, 2015 at 7:10:11 AM UTC-6, Carlos Sanchez wrote: Hi, I'd like to get the Kubernetes plugin under jenkinsci org, with the automated builds, deployments, etc. It is currently at

Re: Jenkins servlet 3.0 upgrade

2015-02-09 Thread Surya Gaddipati
Bump. I am really interested in this. Would like not use ajaxPolling everywhere if possible. Curious if Servlet 3.0 is still under consideration. On Thursday, February 5, 2015 at 11:58:15 AM UTC-6, Surya Gaddipati wrote: There was some discussion about it last year http://jenkins-ci.org

Jenkins servlet 3.0 upgrade

2015-02-05 Thread Surya Gaddipati
There was some discussion about it last year http://jenkins-ci.org/content/thinking-about-moving-servlet-30 I was just wondering if this is something that is still being considered. -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To

Cobertura plugin: The current thinking is to merge this plugin into more generic coverage plugin. Help appreciated.

2015-01-31 Thread Surya Gaddipati
I saw the following statement on the wiki page for cobertura pluggin The current thinking is to merge this plugin into more generic coverage plugin. Help appreciated. https://wiki.jenkins-ci.org/display/JENKINS/Cobertura+Plugin I was wondering how I can help with that effort. I am

Re: Build History - 100s/1000s of builds - performance

2015-01-26 Thread Surya Gaddipati
Might be slightly off topic but since we are talking about build history. I was always confused by why the most important part of the page 'build history' is tucked into a corner instead of being ( literally) front and center. Paginating that small widget in the corner would be awkward at

Re: How do I remove logger console from local plugin development UI

2015-01-21 Thread Surya Gaddipati
Thank you Jesse. That did it. On Monday, January 19, 2015 at 2:15:57 PM UTC-6, Surya Gaddipati wrote: Is there a way to get rid of it? -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To unsubscribe from this group and stop receiving

How do I remove logger console from local plugin development UI

2015-01-19 Thread Surya Gaddipati
Is there a way to get rid of it? -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-dev+unsubscr...@googlegroups.com. To view this discussion on

Re: Jenkins UI Themes - per user login UI Theme configurations (WIP)

2015-01-13 Thread Surya Gaddipati
Wow. This is really interesting. Great work Tom. I would love to build a github theme ui on top of it. On Monday, January 5, 2015 at 11:56:58 AM UTC-6, Tom Fennelly wrote: I got back to doing a little bit of Jenkins Core UI work in the last few weeks. I've evolved the uithemes-plugin

Re: Are jenkins releases supposed to be backwards code compatible?

2014-12-09 Thread Surya Gaddipati
introduced the incompatible change https://github.com/jenkinsci/jenkins/commit/011499f4e430e43ead264dd9c4c15acfb277738d On Wednesday, December 3, 2014 12:00:43 PM UTC-6, Surya Gaddipati wrote: I just upgraded Jenkins version from 1.567 to 1.590 and seems like public interface FileCallableT

Are jenkins releases supposed to be backwards code compatible?

2014-12-03 Thread Surya Gaddipati
I just upgraded Jenkins version from 1.567 to 1.590 and seems like public interface FileCallableT extends Serializable, RoleSensitive now extends 'RoleSensitive' . Is that expected that when I upgrade my jenkins dependency? -- You received this message because you are subscribed to the

workflow plugin installation errors in the update center

2014-12-01 Thread Surya Gaddipati
Workflow: Global Shared Library for CPS workflow Failure - java.io.IOException: Failed to dynamically deploy this plugin at hudson.model.UpdateCenter$InstallationJob._run(UpdateCenter.java:1317) at hudson.model.UpdateCenter$DownloadJob.run(UpdateCenter.java:1116) at

Re: workflow plugin installation errors in the update center

2014-12-01 Thread Surya Gaddipati
Workflow: Aggregator Failure - java.io.IOException: Failed to dynamically deploy this plugin at hudson.model.UpdateCenter$InstallationJob._run(UpdateCenter.java:1317) at hudson.model.UpdateCenter$DownloadJob.run(UpdateCenter.java:1116) at

Re: workflow plugin installation errors in the update center

2014-12-01 Thread Surya Gaddipati
-6, Surya Gaddipati wrote: Workflow: Global Shared Library for CPS workflow Failure - java.io.IOException: Failed to dynamically deploy this plugin at hudson.model.UpdateCenter$InstallationJob._run(UpdateCenter.java:1317) at hudson.model.UpdateCenter$DownloadJob.run

Re: workflow plugin installation errors in the update center

2014-12-01 Thread Surya Gaddipati
:09 PM UTC-6, Surya Gaddipati wrote: Workflow: Global Shared Library for CPS workflow Failure - java.io.IOException: Failed to dynamically deploy this plugin at hudson.model.UpdateCenter$InstallationJob._run(UpdateCenter.java:1317) at hudson.model.UpdateCenter$DownloadJob.run

Re: google-login plugin

2014-12-01 Thread Surya Gaddipati
Can the next version of 'Google Oauth Plugin' be 'Google-login-plugin' code so we don't need a new plugin and existing users can simply upgrade their plugin ? On Saturday, November 29, 2014 10:20:15 PM UTC-6, Ryan Campbell wrote: Google is phasing out OpenID so the existing Jenkins plugin

Re: Rubyruntime plugin release

2014-09-22 Thread Surya Gaddipati
Bump. Can anyone help me? Or tell me why I wouldn't have permissions to make releases on that plugin? On Friday, September 19, 2014 12:57:10 PM UTC-5, Surya Gaddipati wrote: Would someone be able to do a plugin release for https://github.com/jenkinsci/ruby-runtime-plugin I update

Re: Rubyruntime plugin release

2014-09-22 Thread Surya Gaddipati
I guess I am not a maintainer of that plugin. I am not sure who the maintainer is , how do i figure out who the maintainer is? The plugin has been inactive more than 2.5 years though. On Friday, September 19, 2014 12:57:10 PM UTC-5, Surya Gaddipati wrote: Would someone be able to do a plugin

Rubyruntime plugin release

2014-09-19 Thread Surya Gaddipati
Would someone be able to do a plugin release for https://github.com/jenkinsci/ruby-runtime-plugin I update the pom.xml with new juby and jruby stapler versions. I tried to that myself but I get access denied despite having username and password in my settings.xml [INFO] [ERROR] Failed to

Re: dashbeats-plugin

2014-09-17 Thread Surya Gaddipati
I think it would be very nice if dashing itself can be embedded into jenkins https://wiki.jenkins-ci.org/display/JENKINS/Embedding+Rack+Application On Monday, September 15, 2014 9:27:57 AM UTC-5, Kong To wrote: Hi, Within our orgnization (Ericsson), we care going to create a new plugin

Re: RSS for all / RSS for failures

2014-08-02 Thread Surya Gaddipati
I never use that. I would like to see that gone as well. On Thursday, July 24, 2014 11:30:15 AM UTC-5, Kevin Burke wrote: Does anyone use these? A better question maybe, are these used in proportion with their prominent position in the sidebar UI? would anyone get upset if they were

Re: Jenkins Workflow Summit to go with JUC Bay Area?

2014-07-31 Thread Surya Gaddipati
I would be very interested in this also. I think its a great idea. On Wednesday, July 30, 2014 4:31:25 PM UTC-5, Kohsuke Kawaguchi wrote: Some of you were in the Jenkins Scalability Summit last year [1,2,3]. I'm trying to see if we can do a similar one this year back to back with JUC Bay

Re: Request of new plugin hosting for plugin usage

2014-07-11 Thread Surya Gaddipati
Very cool plugin Christian. Can you merge my PR :) On Wednesday, July 9, 2014 2:24:25 AM UTC-5, Christian Meyer wrote: Hi, I developed a plugin to analyze the usage of Jenkins plugins. I would like to share this plugin, although it is in an early state at the moment. github-id:

Re: How do I programmatically implement the post build action Publish JUnit test result report

2014-07-11 Thread Surya Gaddipati
Like this https://github.com/groupon/DotCi-Plugins-Starter-Pack/blob/master/src/main/java/com/groupon/jenkins/dotci/plugins/JunitPluginAdapter.java#L48 On Monday, July 7, 2014 2:04:09 AM UTC-5, Manivel R wrote: I am writing a jenkins plugin using Java Jelly script and wanted to

Re: Advice on plugin upgrade to latest jenkins release

2014-06-30 Thread Surya Gaddipati
It's bit hackish, but if you copy SecurityListener class definition verbatim into github-oauth-plugin in the jenkins.security package and put @Extension(optional=true) to your implementation, then it'd work. When running in =1.569 SecurityListener from the core will hide your private copy, so

Re: Advice on plugin upgrade to latest jenkins release

2014-06-30 Thread Surya Gaddipati
Oops the pr is https://github.com/jenkinsci/github-oauth-plugin/pull/26 On Monday, June 30, 2014 2:27:59 PM UTC-5, Kohsuke Kawaguchi wrote: Hmm, tough call. IIUC, multiple other plugins depend on github-oauth-plugin, so it's bit painful to require such a cutting edge version. But it's

Re: Next LTS candidate chosen: 1.565

2014-06-30 Thread Surya Gaddipati
teilo, What does workflow support mean? Is it a new jenkins feature? On Monday, June 30, 2014 12:59:55 PM UTC-5, ogondza wrote: Hi, As the latest governance meeting did not happen, Jesse and I have picked new release line without much feedback. Letting you know that unless there

Re: GitHub = Jenkins : Not intended to be browsed interactively (must specify payload parameter)

2014-06-27 Thread Surya Gaddipati
put a '/' in the end of githook url in github. That worked for me in for some strange reason. On Thursday, June 26, 2014 4:06:27 AM UTC-5, Eric L'Hostis wrote: Hi, I want to connect a job to GitHub. I ghave this problem with the webhook of github : Caused by:

Re: console log mechanism details?

2014-06-19 Thread Surya Gaddipati
It makes ajax calls to update console. Maybe use chrome webinspector and go from there? On Wednesday, June 18, 2014 7:35:33 PM UTC-5, Max Spring wrote: Is there a document which gives some details on how the tail-f of the log of a running build works in the browser? Thanks! -Max --

SecurityListener. fireAuthenticated @Restricted(NoExternalUse.class)

2014-06-12 Thread Surya Gaddipati
https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/jenkins/security/SecurityListener.java#L91 I am trying to call that method in github-oauth-plugin after user is authenticated

Re: DotCi - plugin hosting request

2014-06-10 Thread Surya Gaddipati
requests view' is a query to mongodb on pusher field and doesn't involve traversing all the builds in memory. On Tuesday, May 20, 2014 11:36:30 AM UTC-5, Surya Gaddipati wrote: https://github.com/groupon/DotCi github usename: suryagaddipati -- You received this message because you

Re: Is there an extension point for listening to login events

2014-06-10 Thread Surya Gaddipati
Yes. SecurityListener. Danke. Exactly what I was after. On Monday, June 9, 2014 11:44:38 AM UTC-5, Surya Gaddipati wrote: I would like to implement an housekeeping method on user when he/she logs in. Is there a extension point I can use to listen to to login events? -- You received

Re: DotCi - plugin hosting request

2014-06-10 Thread Surya Gaddipati
Oh It would be nice to store build logs in mongdb too ( i had a working prototype at some point but it was buggy). This would allow scaling jenkins and deployment on platforms like Heroku, which I think would be a great win for Jenkins. On Tuesday, May 20, 2014 11:36:30 AM UTC-5, Surya

Is there an extension point for listening to login events

2014-06-09 Thread Surya Gaddipati
I would like to implement an housekeeping method on user when he/she logs in. Is there a extension point I can use to listen to to login events? -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To unsubscribe from this group and stop

[ANN] DotCi Plugin Expansion Pack

2014-06-06 Thread Surya Gaddipati
We have open sourced a new plugin https://github.com/groupon/DotCi-Plugins-Starter-Pack One advantage of specifying notifications and plugins in .ci.yml is that one can put if conditions around them (for example most teams using git want to get notified in their hipchat room only if master

Re: Looking for plugins

2014-06-05 Thread Surya Gaddipati
https://www.google.com/search?q=jenkins%20theme Second hit on the page. On Tuesday, June 3, 2014 9:32:20 PM UTC-5, Arnab Karmakar wrote: I am looking for plugins with following features. I did some research but could not find anything providing me these features. If you think these would

Re: Refreshing the Jenkins UI

2014-05-30 Thread Surya Gaddipati
I'd love to see us bring Kevin at al's Doony work back into Jenkins. If the community (and Kevin) were agreeable to that, I'd be more than happy to work on it. I guess we'd need to audit the changes made in Donny and work out any licensing issues if there are any. I definitely think

Re: DotCi - plugin hosting request

2014-05-30 Thread Surya Gaddipati
, 2014 11:36:30 AM UTC-5, Surya Gaddipati wrote: https://github.com/groupon/DotCi github usename: suryagaddipati -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To unsubscribe from this group and stop receiving emails from it, send

  1   2   >