Re: Asking for commit access on emailext-template-plugin

2016-06-10 Thread Slide
Yup, working on it. On Fri, Jun 10, 2016 at 4:58 AM Mikael Gaunin wrote: > Thanks for the merge. > Can you release it please? > > > Le jeudi 9 juin 2016 18:01:50 UTC+2, slide a écrit : > >> I wasn't notified that the PR had been made. I'll review. >> >> On Thu, Jun 9, 2016 at

RE: Upgrade to Credentials 2.1.0+ API for populating credentials drop-down

2016-06-10 Thread Stephen Connolly
There are probably 30+ plugin authors who have just got lovely shiny new improvement JIRA tickets for "Upgrade to Credentials 2.1.0+ API for populating credentials drop-down" These tickets are just a hint. If you don't want to act on the hint, that is your business as a plugin maintainer. In any

Re: Where is the implementation of the slave execute shell command source code

2016-06-10 Thread Oliver Gondža
On 06/10/2016 12:29 PM, 李立泓 wrote: but I would like to know Which method is the specific implementation of the slave side The slave.jar has no idea it will execute the shell build step one day. In fact it does not, the build step (from implementation perspective) is executed on master

Re: Request to be made as a maintainer for Locale Plugin

2016-06-10 Thread Oleg Nenashev
Hi, this plugin is in the adopt-a-plugin list, so no problem. Could you briefly clarify your plans regarding thi plugin? BR, Oleg среда, 8 июня 2016 г., 20:13:46 UTC+2 пользователь Peter Nguyen написал: > > Hi there, > > I would like to request to be made as a maintainer for Locale Plugin. My

How do I have a disabled entry in a Jelly form

2016-06-10 Thread Marc Carter
Hi I think the subject says it all but to expand: I wish to conditionally show some f:entry/f:checkbox elements as greyed-out (ideally with a suitable tooltip) rather than simply not displaying them. Is this not possible? -- You received this message because you are subscribed to the Google

Re: Backporting for 2.7.1 has started

2016-06-10 Thread Stephen Connolly
On 10 June 2016 at 11:25, Oleg Nenashev wrote: > JENKINS-35402 is the only one that I am asking for. I know technically it >> is a feature but it is a simple refactoring and I believe it will be needed >> for some use cases with regard to people that are repackaging

Re: Backporting for 2.7.1 has started

2016-06-10 Thread Oliver Gondža
Uh, I should better get started it seems. There is something in sending this mail late or forgetting it entirely. -- oliver -- 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: [Blue Ocean] Build failure when compiling BlueOcean on a Windows 10 machine

2016-06-10 Thread Cliff Meyers
Hi, I am not 100% sure at the root issue but can you check the contents of the following file? C:\Users\kazaky\.m2\repository\org\jenkins-ci\ plugins\plugin\2.2\plugin-2.2.pom >From the parser error the file appears to be an HTML document but should be a fairly long XML file. There may have

Stop process started by MasterToSlaveCallable when connection to master is lost

2016-06-10 Thread Rouke Broersma
I am a maintainer of the selenium grid plugin, and as part of our plugin we start potentially multiple processes on slaves (selenium nodes, as part of a distributed selenium grid). We have implemented the RestartListener to shutdown all our selenium nodes on the slaves when Jenkins is

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

2016-06-10 Thread fkpkot
concrete errors output with -e -X flags [ERROR] Failed to execute goal org.jenkins-ci.tools:maven-hpi-plugin:1.117:test-hpl (default-test-hpl) on project blueocean: Error preparing the manifest: Failed to open artifact org.jenkins-ci.plugins.workflow:workflow-scm-step:jar:1.15:compile at

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

2016-06-10 Thread fkpkot
Hi, tried to compile the project to start testing related plugins on the project ui. related tool versions: 1. maven 3.3.9 2. jenkins 2.8 (latest release) - tried also with stable lts 1.651.2 (same problems). attaching the build log after several retries, I read the past thread on

Re: Where is the implementation of the slave execute shell command source code

2016-06-10 Thread Oliver Gondža
Just to add, if it will be executed in the context of login/interactive shell is based on the way you launch the agent (environment variables will be inherited from shell to agent and from agent to your process) and the way you define the bash shell script (it interprets shebang at the

Re: Where is the implementation of the slave execute shell command source code

2016-06-10 Thread 李立泓
Thank you for your answer.I debug begin CommandInterpreter.perform ,found that shell.buildCommandLine return [/bin/sh, -xe, /tmp/hudson3908940237320515344.sh] Now I have two questions. 1.slave execute shell , does it the equivalent of running "ssh slavehost command..." ? 2.Slave

Re: Where is the implementation of the slave execute shell command source code

2016-06-10 Thread Robert Sandell
1. No, the channel protocol can use ssh but doesn't have to, the transport layer is further down in the stack. The actual execution of the command is performed on the agent/slave bu the slave.jar process and the request to do so is a command sent over the remoting channel from the master, what you

Re: Stop process started by MasterToSlaveCallable when connection to master is lost

2016-06-10 Thread Jesse Glick
On Fri, Jun 10, 2016 at 1:20 PM, Rouke Broersma wrote: > when the master becomes unavailable to a slave, I want to be able to > have the slave shut down it's selenium node processes. Of course if you are using Pipeline builds, they should be able to just keep running, and

Re: Stop process started by MasterToSlaveCallable when connection to master is lost

2016-06-10 Thread Rouke Broersma
Um what? Pipeline builds have nothing whatsoever to do with the plugin. The plugin starts a process on boot that anyone can freely use, has nothing to do with builds. On Fri, Jun 10, 2016, 21:30 Jesse Glick wrote: > On Fri, Jun 10, 2016 at 1:20 PM, Rouke Broersma

Re: Easy path for the latest Jenkins in Ubuntu

2016-06-10 Thread Evan Dandrea
On Fri, 10 Jun 2016 at 14:25 Jesse Glick wrote: > On Fri, Jun 10, 2016 at 12:31 AM, Evan Dandrea > wrote: > > Let me know what you think about getting the snapcraft.yaml file in your > > repo so you can control exactly what gets built. > > A PR

Re: Backporting for 2.7.1 has started

2016-06-10 Thread Oleg Nenashev
CCed Infra Team. I suppose we're also interested to get https://issues.jenkins-ci.org/browse/JENKINS-35641 backported into 2.7.1. 2016-06-10 13:33 GMT+02:00 Oliver Gondža : > Uh, I should better get started it seems. There is something in sending > this mail late or forgetting

Re: Where is the implementation of the slave execute shell command source code

2016-06-10 Thread Robert Sandell
https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/hudson/tasks/Shell.java https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/hudson/tasks/CommandInterpreter.java#L67 /B On Fri, Jun 10, 2016 at 7:11 AM, 李立泓 wrote: > >

Re: Backporting for 2.7.1 has started

2016-06-10 Thread Oleg Nenashev
> > JENKINS-35402 is the only one that I am asking for. I know technically it > is a feature but it is a simple refactoring and I believe it will be needed > for some use cases with regard to people that are repackaging Jenkins... > there are other ways around if we cannot get this in, but

Re: Error while uploading plugin in Jenkins

2016-06-10 Thread Baptiste Mathus
Note: you probably want to avoid copy pasting a bunch of things in your pom.xml, please see https://groups.google.com/forum/?utm_medium=email_source=footer#!msg/jenkinsci-dev/uE-MAsSquMA/wq_no7w2AgAJ 2016-06-09 14:10 GMT+00:00 Daniel Beck : > See

Re: Where is the implementation of the slave execute shell command source code

2016-06-10 Thread 李立泓
Thank you for your answer.Your suggestion is very good. -iIf the -i option is present, the shell is interactive. -lMake bash act as if it had been invoked as a login shell (see INVOCATION below). -i -l can make bash login/interactive shell but I would like to know Which

Re: Asking for commit access on emailext-template-plugin

2016-06-10 Thread Mikael Gaunin
Thanks for the merge. Can you release it please? Le jeudi 9 juin 2016 18:01:50 UTC+2, slide a écrit : > > I wasn't notified that the PR had been made. I'll review. > > On Thu, Jun 9, 2016 at 5:51 AM Mikael Gaunin > wrote: > >> Hi there, >> >> Plugin: *emailext-template-plugin