Command not found error on bash build script

2015-12-02 Thread Gouri Nair
I added a simple if else statement as a part of my bash script. if [[ $xml_name = "xmlnew" ]] then partnerfolder = "update" else partnerfolder = $partner fi and when i run the build job, i get this error. + [[ xmlnew = \x\m\l\n\e\w ]] + partnerfolder =

Re: Starting slave agents via SSH fails, Ubuntu 12.04

2015-12-02 Thread 孟广毅
yes ,it is java version is too old on the failed slave , you can see which java used befor " Starting slave process: cd "/home/build/jenkins-workspace" && java -jar slave.jar",so you can modify the JavaPath in the slave config page. 在 2015年10月7日星期三 UTC+8上午4:34:26,Mark Waite写道: > > The

RE: Command not found error on bash build script

2015-12-02 Thread John Mellor
Gouri quoted: . . . then partnerfolder = "update" . . . Why do you have spaces around the assignment operator? That’s not legal in bash or any other normal shell language. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Gouri Nair Sent:

How to compiling and installing a Jenkins plugin from GitHub

2015-12-02 Thread Mark Sinclair
I'd like to install a plugin from GitHub, that's not available as a standard Jenkins plug-in. I can see this requires a hpi file uploaded on the advanced tab in the plug in manager. The source files I downloaded don't include the hpi, so I assume I need to compile locally to create the hpi

Re: Command not found error on bash build script

2015-12-02 Thread Gouri Nair
Thank you. I will keep that in mind. On Wednesday, December 2, 2015 at 9:01:02 AM UTC-8, Daniel Beck wrote: > > > On 02.12.2015, at 17:38, Gouri Nair > wrote: > > > Can someone tell me what could be wrong? > > Has absolutely nothing to do with Jenkins. It's just invalid

Re: Command not found error on bash build script

2015-12-02 Thread Gouri Nair
Thank you. I will get rid of the spaces. I am new to bash scripting hence i made that mistake. On Wednesday, December 2, 2015 at 9:24:08 AM UTC-8, John Mellor wrote: > > Gouri quoted: > > . . . > > then > > partnerfolder = "update" > > . . . > > > > Why do you have spaces around the

Re: Command not found error on bash build script

2015-12-02 Thread Daniel Beck
On 02.12.2015, at 17:38, Gouri Nair wrote: > Can someone tell me what could be wrong? Has absolutely nothing to do with Jenkins. It's just invalid bash syntax. Get rid of the space around the '=' char. In the future, try whether what you're doing works outside Jenkins

Re: Official Jenkins Training

2015-12-02 Thread Craig Rodrigues
I woud suggest that you: (1) Watch some free Jenkins videos on Youtube: https://www.youtube.com/results?search_query=jenkins Many of them are quite good and give a good introduction. (2) After watching some videos, make a list of topics that you would like further training.

Re: How to compiling and installing a Jenkins plugin from GitHub

2015-12-02 Thread Mark Sinclair
Thanks for the responses. Looks like I have to get maven. This is the plugin I'm hoping to install: https://github.com/JoelJ/ez-templates On Wednesday, December 2, 2015 at 1:50:29 PM UTC-5, Jeff Vincent wrote: > > Maven is the quickest way. Steps below are oversimplified without >

Re: Hacksgiving Videos

2015-12-02 Thread Victor Martinez
Awesome! Thanks! On Wednesday, 2 December 2015 20:13:41 UTC+1, R Tyler Croy wrote: > > > I've posted the Hacksgiving videos in this blog post: > > > Or more directly, in this YouTube Playlist: > < >

Build/Configuration Manager Opporunity in Orlando, FL

2015-12-02 Thread James Davis
*Responsibilities:* · Automating deployment and release distribution process. Developing and enhancing the automated configuration management system.

Fwd: Us congress hearing of maan alsaan Money laundry قضية الكونغجرس لغسيل الأموال للمليادير معن الصانع

2015-12-02 Thread Sami A
YouTube videos of U.S. Congress money laundering hearing of Saudi Billionaire " Maan Al sanea" with *bank of America* and The owner of Saad Hospital and Schools in the Eastern Province in *Saudi Arabia* and the Chairman of the Board of Directors of Awal Bank in *Bahrain*

Re: Hacksgiving Videos

2015-12-02 Thread R. Tyler Croy
I've posted the Hacksgiving videos in this blog post: Or more directly, in this YouTube Playlist: - R. Tyler Croy

Re: How to compiling and installing a Jenkins plugin from GitHub

2015-12-02 Thread Jeff
Maven is the quickest way. Steps below are oversimplified without knowing more detail about the project/plugin. 1. Install Maven 1. 'sudo apt-get install maven' 2. http://apache.mesi.com.ar/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz 2. Clone git

Re: How to compiling and installing a Jenkins plugin from GitHub

2015-12-02 Thread Victor Martinez
Hi, You can read further about hpi generation files via maven: http://jenkinsci.github.io/maven-hpi-plugin/ In order to run it you need to: - Install JDK - Install maven: https://maven.apache.org/install.html Then you can run 'mvn hpi:run' to test that plugin based on a local jenkins

Re: How to compiling and installing a Jenkins plugin from GitHub

2015-12-02 Thread Victor Martinez
BTW, That plugin was already forked (https://groups.google.com/forum/#!topic/jenkinsci-dev/NVLHCFegfYw) They haven't released anything yet... On Wednesday, 2 December 2015 20:05:48 UTC+1, Mark Sinclair wrote: > > Thanks for the responses. Looks like I have to get maven. This is the > plugin

Re: Build/Configuration Manager Opporunity in Orlando, FL

2015-12-02 Thread Victor Martinez
Hi james, I wonder if you STOP using this mailing list to post anything like this! There are a bunch of different ways of hiring people but I don't really think you got the point what a mailing list means!! Thanks On Wednesday, 2 December 2015 20:32:12 UTC+1, James Davis wrote: > >

Combination triggers possible?

2015-12-02 Thread uscengineer
Not sure if what I am trying to do is possible. Here is what I am trying to accomplish: - Project A builds at the top of the hour. - Project B needs to build 20 minutes later but only if the build in Project A passes. Can this be done? -- You received this message because you

Official Jenkins Training

2015-12-02 Thread Jorge Peña Cotarelo
Hello from Barcelona, I am an experienced build/release engineer and I am interested in receiving Jenkins training. It would be great if that's an official training, but that is not essential. The first option was contacting Cloudbees but their training seems to be more focused in the

Re: Commit hook causes not respecting choice parameter defaults

2015-12-02 Thread Dave Save
Thanks! -- 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...@googlegroups.com. To view this discussion on the web visit

Re: How to run/execute few tests of a job on multiple nodes in jenkins

2015-12-02 Thread Victor Martinez
You can read the below post: - https://groups.google.com/forum/#!searchin/jenkinsci-dev/mvn$20test|sort:date/jenkinsci-dev/PoM9Z-oXIjM/ISEGP9plBgAJ It might help you On Tuesday, 1 December 2015 22:50:29 UTC+1, Amit Mehrotra wrote: > > HI, > > Is there a way to load balance the tests which we

Re: FYI: JENKINS-31850 Tool installers and Java 1.8 build 65+

2015-12-02 Thread Mark Waite
When you say "tool installers", does that include automatic installation of JDK from java.sun.com, and automatic installation of maven from apache? I've seen surprising behavior from docker images I've been using, and if this is the explanation. I created a docker image using Java 8 and

FYI: JENKINS-31850 Tool installers and Java 1.8 build 65+

2015-12-02 Thread Stephen Connolly
Just an FYI https://issues.jenkins-ci.org/browse/JENKINS-31850 Basically if you want the tool installers to be downloaded into your Jenkins instance, unless you muck about with the system properties that will enable the certificates with short RSA to work on your Java 8 build 65+ you may be

Re: Jenkins job

2015-12-02 Thread Victor Martinez
Probably you need to describe in details what you really need. Jenkins jobs are normally async, if you need a monitoring system, probably it's worth if you use Zabbix or another alternative system instead. Cheers On Tuesday, 1 December 2015 23:16:46 UTC+1, GBANE FETIGUE wrote: > > Hi buddy