Re: [Blue Ocean] Build failure when compiling BlueOcean on a Windows 10 machine

2016-06-13 Thread fkpkot
Very partly by installing HPI's manually - but only some of the functionalities worked (but without any errors) On Tuesday, June 14, 2016 at 8:14:44 AM UTC+3, Michael Neale wrote: > > You said you had it working previously? > > On Tuesday, June 14, 2016 at 3:08:38 PM UTC+10, fkp...@gmail.com wro

Re: [Blue Ocean] Build failure when compiling BlueOcean on a Windows 10 machine

2016-06-13 Thread Michael Neale
You said you had it working previously? On Tuesday, June 14, 2016 at 3:08:38 PM UTC+10, fkp...@gmail.com wrote: > > Thanks - but i'm still having strange difficulties runningthe plugin > similar to the Win 7 issues that were discussed previously. > > i'm adding my screen logs - after several ret

Re: [Blue Ocean] Build failure when compiling BlueOcean on a Windows 10 machine

2016-06-13 Thread Michael Neale
Hey - that's cool! There is no "create pipeline" feature yet in blue ocean, hence it takes you to the classic UI. For building plugins, https://github.com/cloudbees/blueocean-sample-pipeline-result-ext-plugin is a sample plugin that you can look at. What is the plugin you are interested? ma

Re: [Plugin development]-Programmatically modify 'Execute Shell' content doesn't take effect.

2016-06-13 Thread icetree521
Hi Glick, What I am doing is to inject some parameters into the content of 'Execute Shell' dynamically. After some google search , I found there is no method for me to update the content of "Execute Shell" but can only remove the old one and add back the new one. On Tuesday, June 14, 2016 at

Re: How do I have a disabled entry in a Jelly form

2016-06-13 Thread Tom Fennelly
I guess it depends on how you want to eventually reenable the elements on the page, but in general you're talking about using JavaScript on the page that watches the values change in certain fields and then enables/disables the "special" fields. On Friday, June 10, 2016 at 8:27:32 PM UTC+9, Mar

Re: [Jenkins-infra] Scheduled infrastructure maintenance window June 14 00:00 UTC

2016-06-13 Thread R. Tyler Croy
(replies inline) On Mon, 13 Jun 2016, R. Tyler Croy wrote: > Reminder, this will be happening in about 45 minutes issues.jenkins-ci.org is back online with JIRA 7.1.7, wheee! The majority of the maintenance window was actually taking a full backup, once that was completed the upgrade process

Re: Logging from Custom class loaded using workflow-cps-global-lib-plugin

2016-06-13 Thread KrishnaKumar Sivashanmugam
Jesse, you made my day, Thanks a lot, this works great!! On Tue, Jun 14, 2016 at 12:06 AM, Jesse Glick wrote: > On Mon, Jun 13, 2016 at 4:04 AM, Krishnakumar S > wrote: > > def custom_class = new CustomClass(currentBuild.getRawBuild()) > > echo "starting Master" > > custom_class.test_log() >

Re: [Blue Ocean] Build failure when compiling BlueOcean on a Windows 10 machine

2016-06-13 Thread Tom Fennelly
Hi there. The Blue Ocean plugins are not yet in the Update center, so installing it in a Jenkins instance is a bit tricky atm Vs running hpi:run from source. As for your plugin ... maybe start a new thread about that, giving some details of the plugin etc. On Tuesday, June 14, 2016 at 12:15:1

Re: Unexpected memory footprint from LogRotator

2016-06-13 Thread Jesse Glick
On Mon, Jun 13, 2016 at 12:27 PM, Jimilian wrote: > I think it's much > better to delete a little bit more jobs (or less) than to pay so huge price Then we would need to introduce new UI to allow the user to decide to delete all builds older than a certain number. Post-1.597 it may be possible t

Re: Scheduled infrastructure maintenance window June 14 00:00 UTC

2016-06-13 Thread R. Tyler Croy
Reminder, this will be happening in about 45 minutes On Wed, 08 Jun 2016, R. Tyler Croy wrote: > Consider this notice that there will be a scheduled maintenance window June > 14th > 00:00 UTC or June 13th 16:00 PDT for project infrastructure. > > This is a followup window to try to get JIRA upg

Plugin Hosting Request-106

2016-06-13 Thread tsandoval
Hi all, I submitted a plugin hosting request for the Marathon plugin a few weeks ago and it hasn't seen any movement. Any ETA on when these requests might get going? Much appreciated! Tito -- You received this message because you are sub

Re: Jenkins and Docker pull

2016-06-13 Thread Glen Millard
Hi - I'm trying to do the following: 1. automated pulls of Docker images from a somewhat private registry (probably daily) 2. take each of those containers/images and scan them for vulnerabilities, security etc using Clair and Openscap) 3. email the reports (HTML based) I'm relatively new to Jen

Re: Jenkins and Docker pull

2016-06-13 Thread Zoratto Thomas
Btw, the users mailing list is better suited for this kind of question > Le 13 juin 2016 à 16:30, Glen Millard a écrit : > > Hello everyone; > > I want to include a Docker pull of several containers using a Jenkins job. > > Questions: > > is there/are they recommended plugins - I see a few -

Re: Jenkins and Docker pull

2016-06-13 Thread Zoratto Thomas
Hey, Could you be more specific regarding your needs ? I use the plugin you mentioned but its goal is to build a docker image based on a dockerfile and then push it to docker hub for example. I'm not sure you're looking for something like that, am I wrong ? > Le 13 juin 2016 à 16:30, Glen M

Re: Unexpected memory footprint from LogRotator

2016-06-13 Thread Jimilian
I had read it very careful. And want to repeat my point - I think it's much better to delete a little bit more jobs (or less) than to pay so huge price (25% of all allocations!!! see screenshot in my second message). If I didn't get something from this comment, please, clarify it for me. On Mond

Re: [Plugin development]-Programmatically modify 'Execute Shell' content doesn't take effect.

2016-06-13 Thread Jesse Glick
On Mon, Jun 13, 2016 at 11:46 AM, icetree521 wrote: > I am developing a new plugin where it need to modify the content of 'Execute > Shell'. Above is my code. Not sure what ultimately you intend to accomplish, but do not do what you are doing. -- You received this message because you are subscr

Re: Unexpected memory footprint from LogRotator

2016-06-13 Thread Jesse Glick
On Mon, Jun 13, 2016 at 10:49 AM, Jimilian wrote: > Maybe it's possible to change this behavior? Reread the comment you quoted. -- 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

Re: Logging from Custom class loaded using workflow-cps-global-lib-plugin

2016-06-13 Thread Jesse Glick
On Mon, Jun 13, 2016 at 4:04 AM, Krishnakumar S wrote: > def custom_class = new CustomClass(currentBuild.getRawBuild()) > echo "starting Master" > custom_class.test_log() > echo "Test Echo" > > > CustomClass, logger is defined as below. > class CustomClass { > def jenkins_logger > > CustomClass(ra

[Plugin development]-Programmatically modify 'Execute Shell' content doesn't take effect.

2016-06-13 Thread icetree521
FreeStyleProject p = (FreeStyleProject) build.getProject(); ORIGIN_BUILDER = (CommandInterpreter) builder; NEW_BUILDER = new Shell("echo hello"); p.getBuildersList().remove(ORIGIN_BUILDER); p.getBuildersList().add(NEW_BUILDER); p.save(); p.doReload(); I am developing a new plugin where it need t

Re: [Blue Ocean] Build failure when compiling BlueOcean on a Windows 10 machine

2016-06-13 Thread fkpkot
Finally succeed installing it on the machine after reinstalling with jenkins 2.8. But couldn't use mvn run:hpi - >> installed all the plugins manually from the folder with upload and then ran it. and it works =) Now the (great) ui works - but when i press new pipeline - it takes me to the old sc

Adopt

2016-06-13 Thread Emilio Escobar
Hi, I would like to adopt the https://wiki.jenkins-ci.org/display/JENKINS/Change+Log+History+Plugin because the comment of the current maintainer at https://github.com/jenkinsci/changelog-history-plugin/pull/2 My github id and jira id is "escoem". Thanks. -- You received this message beca

Re: Unexpected memory footprint from LogRotator

2016-06-13 Thread Jimilian
On Monday, 13 June 2016 16:49:56 UTC+2, Jimilian wrote: > > Hi! > > We had some issues with Jenkins last days and after some profiling I found > that root cause

Unexpected memory footprint from LogRotator

2016-06-13 Thread Jimilian
Hi! We had some issues with Jenkins last days and after some profiling I found that root cause is how Jenkins perform log rotation. LogRotator.java (1.609.3): if(numToKeep!=-1) { // Note that RunList.size is deprecated, and indeed here we are loading all the builds of the

Jenkins and Docker pull

2016-06-13 Thread Glen Millard
Hello everyone; I want to include a Docker pull of several containers using a Jenkins job. Questions: 1. is there/are they recommended plugins - I see a few - this one looks like overkill - https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Docker+Build+and+Publish+plugin - has

Re: Jenkins 1.651.3 LTS RC testing started

2016-06-13 Thread Oleg Nenashev
Yes, It has not been released. It would be great to have it ASAP, because there are important fixes inside. суббота, 11 июня 2016 г., 17:08:00 UTC+2 пользователь Baptiste Mathus написал: > > Seems like the LTS changelog already got updated, but the .3 was never > released. Someone just asked ab

Re: [Blue Ocean] Build failure when compiling BlueOcean on a Windows 10 machine

2016-06-13 Thread fkpkot
Hi, Thanks for the speedy reply. It is an html file stating that i should check my proxy settings which are defined in the .m2/settings.xml. I'm trying to reimport it currently as i checked the connection to the proxy and it should be fine (otherwise all the other dependencies won't be download

Logging from Custom class loaded using workflow-cps-global-lib-plugin

2016-06-13 Thread Krishnakumar S
All, I am trying to use workflow-cps-global-lib-plugin to create some custom classes to be used within pipeline Job for some specific use case requirement. Instantiating the custom class within the pipeline Job. However anything logged within the our custom class is not posted in the Jenkins