Re: Getting Robot Framework Results in the Email from Jenkins

2016-02-18 Thread Guruswamy B M
Thanks for the info. I am using email-ext with version 2.40.5. Yes, changing mime type from plain/text to html works. Thanks On Thursday, February 18, 2016 at 11:41:47 PM UTC+5:30, slide wrote: > > I'm hoping you mean email-ext 2.50.5 :-) > > You probably want to set the mime type in the setting

Jenkins environment variable in "execute shell script on report host using ssh"

2016-02-18 Thread Shambhu Sharma
Hi, I am trying to do ssh to a linux machine and run some commands. I am using ssh agent plugin for this. I tried accessing Jenkins environment variable in "execute shell script on report host using ssh", but i am getting "command not found" error for that environment variable. Here is what

Re: Jenkins + Docker on Atomic Host

2016-02-18 Thread Rishabh Das
I used the fedora base image. I created a docker file which uses the Fedora image, adds Jenkins public key to authorized_keys in the container. I added the same in credentials in Jenkins. test connection for the Atomic host is successful. It returns the version number. Attached are 2 screenshots o

Re: Jenkins + Docker on Atomic Host

2016-02-18 Thread Baptiste Mathus
Which image did you use for the docker provisioned agents? Did you configure the authentication? Also: nothing in the logs while waiting? Le 17 févr. 2016 12:49 PM, "Rishabh Das" a écrit : > Hi, > > I was trying to configure a Jenkins job to spin a docker container on the > Atomic Host. I confi

Re: vsphere on-demand slave. Job hang as pending?

2016-02-18 Thread kjs
Found there is two entried with vsphere when creating a new node. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscrib

Re: Jenkins + Docker on Atomic Host

2016-02-18 Thread Rishabh Das
Anyone facing similar issue ? On Wed, Feb 17, 2016 at 5:19 PM, Rishabh Das wrote: > Hi, > > I was trying to configure a Jenkins job to spin a docker container on the > Atomic Host. I configured Jenkins Docker plugin and added a Docker cloud > and a Docker template for the image to be used. > I

Re: Getting Robot Framework Results in the Email from Jenkins

2016-02-18 Thread Slide
I'm hoping you mean email-ext 2.50.5 :-) You probably want to set the mime type in the settings to html. On Thu, Feb 18, 2016, 09:45 Guruswamy B M wrote: > Hi, > > I have integrated jenkins with Robot frame work, also used email-ext > plugin for build result email notification by referring > ht

Re: How to pass build.xml from one Jenkins to another Jenkins

2016-02-18 Thread Victor Martinez
Might be useful if you look at the job import plugin, since you can import jobs between jenkins instances. Rather than copying files or running jenkins CLI. BTW, you can get rid of that actions if you use some Configuration as Code paradigms such as JobDSL, Pipeline or Jenkins builder Cheers -

Getting Robot Framework Results in the Email from Jenkins

2016-02-18 Thread Guruswamy B M
Hi, I have integrated jenkins with Robot frame work, also used email-ext plugin for build result email notification by referring http://kevinormbrek.blogspot.in/2012/08/getting-robot-framework-results-in.html link. However, in received email, the results are broken and displays as html eleme

Re: How to pass build.xml from one Jenkins to another Jenkins

2016-02-18 Thread Ioannis Moutsatsos
Can you please clarify. Do you want to pass information from one Jenkins job to another or one Jenkins instance to another Jenkins instance? On Thursday, February 18, 2016 at 1:40:21 AM UTC-5, Jenkins wrote: > > Hello, > > I am looking for a solution how to to pass the build.xml file from one >

Re: Problem triggering builds remotely

2016-02-18 Thread Asfand Yar Qazi
Ah yes, thanks for pointing me in the right direction. I had to do 'buildWithParameters' EVEN THOUGH all the parameters have default values. Thanks! Regards, Asfand Yar Qazi On 17 February 2016 at 21:40, Victor Martinez wrote: > Correct me if I'm wrong but that job has any paramete

Re: Json and dynamic variables

2016-02-18 Thread 'Niksan' via Jenkins Users
> > Ah great, exactly what I was looking for, I also realised I'd also be > better parsing the string before parsing the JSON, rather than the other > way round, simplifies it a lot. :) > Thanks again. -- You received this message because you are subscribed to the Google Groups "Jenkins Us

Calling Volunteers for Linuxwochen

2016-02-18 Thread Alyssa Tong
Hello, We have an opportunity via an exhibit (table) to showcase Jenkins at Linuxwochen Vienna on April 28 - 30 at the FH Technikum Wien (http://www.technikum-wien.at/en/). They are expecting 1,000-1,500 visitors for the 3 days event. I wanted to take a pulse to see who is

Re: Getting started with jenkins CI. getting git to trigger build

2016-02-18 Thread niristotle okram
Interesting... Are you able to trigger the build manually? what is the SCM? On Thu, Feb 18, 2016 at 8:47 AM, Moshe wrote: > thank you but I saw this already. some tutorials say use poll scm and > others say use Build when a change is pushed to GitHub. > none of them are triggering the build. > >

Re: Json and dynamic variables

2016-02-18 Thread Ioannis Moutsatsos
I see. In that case the 'groovy' way to do this is the SimpleTemplateEngine [1] http://docs.groovy-lang.org/latest/html/api/groovy/text/SimpleTemplateEngine.html Hope it helps! Ioannis On Thursday, February 18, 2016 at 9:47:11 AM UTC-5, Niksan wrote: > > Thanks for that, I'm only interested in

Re: Json and dynamic variables

2016-02-18 Thread 'Niksan' via Jenkins Users
> > Thanks for that, I'm only interested in reading though, I came up with a > solution although I'm rusty with Groovy but it will make do until a better > approach appears. > This method enables me to write test json in the console for test purposes. def token1 = 'Replaced-Token1' def token2 =

Re: Getting started with jenkins CI. getting git to trigger build

2016-02-18 Thread Moshe
thank you but I saw this already. some tutorials say use poll scm and others say use Build when a change is pushed to GitHub. none of them are triggering the build. בתאריך יום חמישי, 18 בפברואר 2016 בשעה 16:34:26 UTC+2, מאת ok999: > > Open the jenkins job configuration page and look for build tri

Re: Getting started with jenkins CI. getting git to trigger build

2016-02-18 Thread niristotle okram
Open the jenkins job configuration page and look for build trigger. On Thursday, February 18, 2016, Moshe wrote: > Hey everyone. > After spending literally hours reading articles, watching videos and what > not, I'm officialy saying jenkins got the best of me. > My requirements are as simple as

Getting started with jenkins CI. getting git to trigger build

2016-02-18 Thread Moshe
Hey everyone. After spending literally hours reading articles, watching videos and what not, I'm officialy saying jenkins got the best of me. My requirements are as simple as they can get. I need jenkins to work with my Git repository and to trigger a build each time a change is made to the bran

Re: Json and dynamic variables

2016-02-18 Thread Ioannis Moutsatsos
I have been experimenting with the groovy JsonBuilder[1] and I find it quite capable in generating dynamic JSON. I'm not aware of any Jenkins plugin for what you are looking for though. [1] http://docs.groovy-lang.org/latest/html/gapi/groovy/json/JsonBuilder.html Cheers Ioannis On Thursday, Feb

Re: vsphere on-demand slave. Job hang as pending?

2016-02-18 Thread kjs
By the way - I have: vSphere 6.0 Jenkins 1.642 vsphere cloud plugin 2.10 -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroup

vsphere on-demand slave. Job hang as pending?

2016-02-18 Thread kjs
Hi Just setup vshere plugin. I want to use it to deploy slaves on-demand. Configured vsphere cloud and test ok against vcenter. Created one slave template and labeled it "w7x86.v1.2". Created a "freestyle project". Selected "restricted where this project can be run", and entered "w7x86.v.1.2",

Json and dynamic variables

2016-02-18 Thread 'Niksan' via Jenkins Users
I have a job which has a groovy script and inside there I have a JSON like array which I parse, I'd like to offload this array to a JSON file on disk but it contains some elements that are gathered from parameters for the job. What's the best way of injecting / replacing tokens in a JSON file th

hiding the slaves/build executor status from users.

2016-02-18 Thread Amit Dar
Hi, we are trying to configure Jenkins for use in a secured environment (to be more specific, our company has a heavy compartmentalization between departments). in order to use Jenkins, we have two options: 1. setup a master for each section of the company. 2. use one master, and apply a strong