Re: Accessibility- 508 Compliance

2016-08-02 Thread James Dumay
Hi Norman, Wow that would be incredible! We run a development version of Blue Ocean at https://ci.blueocean.io/blue/pipelines and you can file reports at https://issues.jenkins-ci.org/ in the blueocean-plugin component. Is there any way I can help you get started? On Tuesday, August 2, 2016

How can HTML be inserted from another file into a Jelly file?

2016-08-02 Thread Moshe Cohen
Hi, I would like to display some HTML (within some boilerplate) that is generated as an artifact of my build. So, I am looking for a way to insert the contents of such a file into the Jelly script on the fly - i.e. it is a different file on each build. I have tried out Jelly core's but that

Re: How do I associate an index.jelly file with a given Action class?

2016-08-02 Thread Moshe Cohen
Sure. Information is spread out in many different docs. After you know what to do, you realize that it was really written somewhere, but for a beginner trying to learn, it is not very useful. I think the best way forward with docs is to enhance the tutorial and have many more examples. The

Re: How do I associate an index.jelly file with a given Action class?

2016-08-02 Thread Daniel Beck
> On 03.08.2016, at 00:32, Moshe Cohen wrote: > > It is very confusing to go by the docs alone. I'd appreciate if you could be more specific as to what's confusing. That'll help us make the documentation better. -- You received this message because you are subscribed to

Re: How do I associate an index.jelly file with a given Action class?

2016-08-02 Thread Daniel Beck
> On 02.08.2016, at 22:41, Moshe Cohen wrote: > > How do I associate an index.jelly file with a given Action class. I have > tried putting the file in all sorts of places but with no success. While our developer documentation is lacking in some advanced topics, the basics

How do I associate an index.jelly file with a given Action class?

2016-08-02 Thread Moshe Cohen
I began with posting Displaying HTML only in the main-panel yesterday, but came to realize that my question is more basic: How do I associate an index.jelly file with a given Action class. I have tried putting the file in

Re: Plugin Tests Memory Usage (Maybe jenkins rule)

2016-08-02 Thread Liam Newman
Take a look at https://github.com/jenkinsci/git-plugin/pull/411 again. I tried _reducing_ the size of the heap and Mark increased the size of the PermGen for Java 7. Note: we had to do this for both Surefire and the parent Maven process separately. This resulted in a stable environment with

API access to update pipeline stages

2016-08-02 Thread Daniel Watrous
I'm interested in handling the deploy stage outside of Jenkins, but would like Jenkins to accommodate two stages related to deploy: Deploy Start and Deploy Complete. I would like my deploy mechanism to be able to query Jenkins for any pipeline that has finished all test/build stages and be

Re: combine multiple pipeline steps

2016-08-02 Thread Ioannis Canellos
And how do I wrap a snippet like this inside a jenkins plugin? On Tuesday, August 2, 2016 at 4:01:26 PM UTC+3, Baptiste Mathus wrote: > > Live example: > > https://github.com/jenkinsci/jenkins/blob/master/Jenkinsfile#L184L190 > > Cheers > > Le 2 août 2016 2:56 PM, "Adrien Lecharpentier"

Re: Jenkins As service not able to connect to Git Lab through SSH

2016-08-02 Thread Mark Waite
I see that you're using http as the transport protocol. That means you need to use a username and password, rather than an ssh private key. The http protocol (and https) implementation in the git plugin does not allow you to use an ssh private key for authentication. Mark Waite On Tue, Aug 2,

Urgent Req : 15 Roles for Core Java Developer's at Mc Lean, VA 12months Contract to Hire

2016-08-02 Thread mike agilees
HI Professional This is MIKE MICHON from Agile Enterprise solutions This is in reference to the following position. * Please find below job description if you feel comfortable please revert with updated resume, Rate and contact details ASAP * Title:Core Java

Re: Displaying HTML only in the main-panel

2016-08-02 Thread Moshe Cohen
Maybe I have to create a 2nd action? But how would I link to it ? On Tue, Aug 2, 2016 at 4:49 PM, Moshe Cohen wrote: > Yes, I have done that and it works. > The thing is I have a link inside the summary.jelly and I would like this > link to load an HTML file (created by the

Re: Displaying HTML only in the main-panel

2016-08-02 Thread Moshe Cohen
Yes, I have done that and it works. The thing is I have a link inside the summary.jelly and I would like this link to load an HTML file (created by the build) into the the same main-panel part of the browser window (so that the sidebar and title, etc. remain in view). On Tue, Aug 2, 2016 at 3:28

IMPORTANT: Do you have any `extends JnlpAgentReceiver` classes?

2016-08-02 Thread Stephen Connolly
The JnlpAgentReceiver API contract is too heavily tied to the NioChannelHub abstraction (which is fundamentally incompatible with SSLEngine) As such for JNLP4-connect a.k.a. JENKINS-36871 I basically have to rip it out. Now this should not be *too* big a deal as there is only one Open Source

Re: combine multiple pipeline steps

2016-08-02 Thread Baptiste Mathus
Live example: https://github.com/jenkinsci/jenkins/blob/master/Jenkinsfile#L184L190 Cheers Le 2 août 2016 2:56 PM, "Adrien Lecharpentier" < adrien.lecharpent...@gmail.com> a écrit : > Hi, > > you could create a function take a clojure in parameter and use it. For > example: > > def

combine multiple pipeline steps

2016-08-02 Thread Ioannis Canellos
Hi all, I have a couple of pipeline steps that I want to have the combined as one. For example I have the 'configure' step which returns a label and I want to combine it with the node step as follows: label = configure() node(label) { ... } So, what I want is to create an alternative of node,

Re: combine multiple pipeline steps

2016-08-02 Thread Adrien Lecharpentier
Hi, you could create a function take a clojure in parameter and use it. For example: def myenvironment(def body) { def label = configure() node(label) { body.call() } } and use it like myenvironment { sh "make" } Le mar. 2 août 2016 à 14:51, Ioannis Canellos a

Re: Jenkins As service not able to connect to Git Lab through SSH

2016-08-02 Thread Ranjit kumar Kundu
Now I am getting this error message Started by user anonymous Building in workspace C:\Program Files (x86)\Jenkins\jobs\ApiV1\workspace Fetching changes from the remote Git repository ERROR: Error fetching remote repo 'origin'hudson.plugins.git.GitException

Re: Displaying HTML only in the main-panel

2016-08-02 Thread Daniel Beck
Attach an action to the build, and have it provide a summary.jelly view. https://wiki.jenkins-ci.org/display/JENKINS/Action+and+its+family+of+subtypes#Actionanditsfamilyofsubtypes-Specialviewsfortheactionhost > On 02.08.2016, at 00:13, Moshe Cohen wrote: > > Hi, > I am bit

Re: Jenkins As service not able to connect to Git Lab through SSH

2016-08-02 Thread Mark Waite
Once you've enabled JGit at the system level ("Manage Jenkins" -> "Global Tool Configuration" -> "Git" -> "Add Git" -> "JGit"), then you open the specific job with "Configure" in the Git section of the job definition you'll find "Git executable" with a drop down list that includes "Default" and

Re: Jenkins As service not able to connect to Git Lab through SSH

2016-08-02 Thread Ranjit kumar Kundu
> Not getting enough option in Jgit section as I have attached the snapshot > > -- 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

How to enable option "Build when a change is pushed to BitBucket" from groovy scipt ?

2016-08-02 Thread Alok Kumar Singh
I am trying to automate this work through groovy script. On my jenkins master I have more than 200 jobs where I want to enable bitbucket trigger, How can I do that with groovy script. Please help. I already tried this but it din't work. for(item in Hudson.instance.items){

Re: Jenkins As service not able to connect to Git Lab through SSH

2016-08-02 Thread Ranjit kumar Kundu
Attached snapshot of how i added public key in git lab . On Thursday, 28 July 2016 21:05:08 UTC+5:30, Mark Waite wrote: > > Once you added JGit to the system, then the job definition will have an > additional choice added in the "Git" section. Use that choice to switch > from "Default" to

Re: Jenkins As service not able to connect to Git Lab through SSH

2016-08-02 Thread Ranjit kumar Kundu
I have used the private key of .ssh key pair from ma machine to connect the Git lab. Also added the public key in Git lab as well . As you told where to find this * then the job definition will have an additional choice added in the "Git" section. Use that choice to switch from "Default" to

How to apply build trigger for bitbucket in jenkins jobs from groovy sccript?

2016-08-02 Thread Alok Kumar Singh
I am trying to automate this work through groovy script. On my jenkins master I have more than 200 jobs where I want to enable bitbucket trigger, How can I do that with groovy script. Please help. I already tried this but it din't work. for(item in Hudson.instance.items){

Re: Plugin extensions

2016-08-02 Thread Ioannis Canellos
Thanks for the responses! I'll have a look at the extension point and see how it goes! -- 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: Run groovy script from jelly file

2016-08-02 Thread Oliver Gondža
On 2016-08-02 08:57, Markus Axelsson wrote: Many thanks for your reply. I see what you mean. I'm working on adding pipeline support to the Plot plugin. In a freestyle item this is done in the java so that information for the plot is stored in a .csv. So what I'm trying to figure out is to solve