Re: syntax highlighting of Build - execute shell

2014-06-25 Thread Maciej Jaros
min yuan (2014-06-23 16:03): Well, thank you very much, I'd like to know how to install it to my jenkins server, but actually i didn't find your plugins in manage plugins. It's not a plugin. You need to download stuff from the _build

slave workspace not available when ssh'ing

2014-06-25 Thread Philippe Scelers
Hi, $WORKSPACE on slave node is not available for scripts doing ssh (it is ok on master) My process must ssh to servers and save files in Jenkins workspace, since I setup slave nodes in Jenkins I am unable to access workspace within ssh. Any idea how to share the workspace on slaves

Re: Any way to schedule a one time build?

2014-06-25 Thread Hendy Irawan
Actually there is a way: https://myjenkins.ci.cloudbees.com/job/myjob/build?delay=2100sec That means build 35 minutes from now. It works on CloudBees. I'm not sure if it's working on vanilla Jenkins or if it requires a plugin. I also never see it on CloudBees interface. I just noticed that the

Re: Any way to schedule a one time build?

2014-06-25 Thread Hendy Irawan
Actually there is a way: https://myjenkins.ci.cloudbees.com/job/myjob/build?delay=2100sec That means build 35 minutes from now. It works on CloudBees. I'm not sure if it's working on vanilla Jenkins or if it requires a plugin. I also never see it on CloudBees interface. I just noticed that

Re: jenkins-cli stop working on ubuntu 14.04

2014-06-25 Thread corneil.duples...@gmail.com
Compare java -version in the 12.04 and 14.04 environments. On 21 June 2014 10:56, magnus baninow...@gmail.com wrote: Hi List I have jenkins installed from apt as described here https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+on+Ubuntu I copied my configuration and all jobs

Re: How to get current users LDAP groups in groovy-script

2014-06-25 Thread mku
I found a solution. Just in case anybody is interested: Within scriptler i created a script groovy-script similar to this: import hudson.model.* def allowed_environments = [dev,test,test-integration] if (adm_proj_a in User.current().getAuthorities() ) {

AWS EC2 AMIs as the basis of build/test/deploy CI entities

2014-06-25 Thread Dave Tenny
I'm looking for tools that support CI processes in Jenkins based on AMIs. Builds build AMIs. Tests test AMIs. Viable AMIs are then eventually to production. The idea is not to change the AMI after it's built except for ec2 userdata parameters, even avoiding that if possible. I can't find any

RE: SVN Check out issue

2014-06-25 Thread BIRD Neil
From: Panikera Raj, Sent: 23 June 2014 11:48 I am unable to check out code from svn using Jenkins where as same command if ran using Cygwin it is able to check out the code . svn: E215004: Authentication failed and interactive prompting is disabled; see the --force-interactive option svn:

Execute Windows batch command not executing

2014-06-25 Thread jongmob
Hello I created a multi-configuration project. I find that my commands are not executing always. Sometimes they do work sometimes they don't. I cannot understand why. Any ideas? I wonder if only BAT files are supported? although even if I just have 2nd command, still does not work 100% of the

Re: Execute Windows batch command not executing

2014-06-25 Thread jongmob
Also I wonder what default is, and what exactly it triggered.. Output seems really limited. Is there a verbose output option? -- 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

Re: AWS EC2 AMIs as the basis of build/test/deploy CI entities

2014-06-25 Thread jpd4nt
Hi Dave. We use Chef for building the AMIs, but testing is currently manual. Not seen anything that does the testing. On Wednesday, 25 June 2014 14:48:58 UTC+1, Dave Tenny wrote: I'm looking for tools that support CI processes in Jenkins based on AMIs. Builds build AMIs. Tests test AMIs.

Unable to copy scoverage from

2014-06-25 Thread Maneesh M P
Can anyone tell me how to fix this issue? Archiving artifacts*10:34:15* Publishing Scoverage XML and HTML report...*10:34:15* Unable to copy scoverage from /home/build/jenkins/workspace/xyz/packager/repo/target/scala-2.10/scoverage-report to

Re: Failed to fetch from g...@github.com

2014-06-25 Thread lochrann
Hi everybody. John, I've started reading Jenkins: The Definitive Guide today (I'm a Jenkins newbie too) and I've had the very same problem as you. It's been driving me mad all day long.. Stuck at page 24 - ho la la. I thought that it was because my Git directory was not at the default place

Re: Unable to copy scoverage from

2014-06-25 Thread Richard Bywater
Shouldn't the filename just be the filename without the directory? (Sorry never used the plugin so can't say for sure :) ) Richard. On Thu, Jun 26, 2014 at 2:55 AM, Maneesh M P maneesh.po...@gmail.com wrote: Can anyone tell me how to fix this issue? Archiving artifacts*10:34:15* Publishing

authentication, Jenkins CLI, and Windows

2014-06-25 Thread Ginga, Dick
OK, so I should have been paying attention to all those SSH emails. I just enabled LDAP authentication on my Jenkins server today allowing anyone logged in to do anything and I discovered that my small use of jenkins-cli now fails: # # set the build display name # C:\Program Files

Notification of Job Taking Too Long

2014-06-25 Thread Gavin Goodrich
OK, I know this one's been out before, but I can't find a good answer (so please don't tell me to just use the timeout plugin that kills the job). What is the best way to know if a job has hung and, if possible, send a notification? Again, I don't want to kill the job...just be notified.

Re: Execute Windows batch command not executing

2014-06-25 Thread Gavin Goodrich
Triggering default sounds like you are triggering another job to run as part of this jobs execution. Are you doing this explicitly? I'm pretty sure that .bat files are not the only thing supported by the run windows batch command build step. My server doesn't call any...just straight windows

Re: authentication, Jenkins CLI, and Windows

2014-06-25 Thread Gavin Goodrich
First, you can always setup ssh on Windows using CygWin https://www.cygwin.com/install.html I'm confused on the rest of your problem as I don't understand how your system is set up. How are you connecting your windows nodes now? Is anonymous a user on the jenkins server or on your windows

Re: Build pipeline plugin ERR_CONTENT_DECODING_FAILED error

2014-06-25 Thread Daniel Beck
Please file a bug in Jira and provide a full explanation on how to reproduce the issue starting with a blank Jenkins instance. (Please make sure it's not just happening on your production instance i.e. has other dependencies on your configuration than what you mentioned) In the past similar

Re: Execute Windows batch command not executing

2014-06-25 Thread Daniel Beck
On 26.06.2014, at 00:35, Gavin Goodrich gavingoodr...@gmail.com wrote: default That's the default matrix/multi-project configuration name for the single existing sub-project if there are no axes defined. Compare the following two URLs to see the difference: Meta-job just triggering

Re: Notification of Job Taking Too Long

2014-06-25 Thread Scott Evans
Gavin, I ended up writing a custom monitoring routine which pulls the api information from Jenkins and sends me a notification if a job is running long. There's a flag in the api xml that tells my script if a job is potentially stuck that I key off of. I run it on a separate box and just use

Test Reult link, from Extra Columns plugin, broken with 404 error?

2014-06-25 Thread Lakey
Hi, I've just updated Jenkins to 1.569 and think there is a problem with the link to the Test Result, shown by the Extra Columns plugin. Just wondered if anyone else had experienced this? Essentially, the link in a view list is: jenkins:8080/view/ViewName/*view/viewName*

Re: Test Reult link, from Extra Columns plugin, broken with 404 error?

2014-06-25 Thread Lakey
OK, From looking through the source code I found that the following file: C:/Jenkins/plugins/extra-columns/web-inf/lib/classes.jar/jenkins/plugins/extracolumns/TestResultColumn/column.jelly Contains: a href=${job.url}lastCompletedBuild/${tr.urlName}/ I don't know if the value of ${job.url}

Re: Test Reult link, from Extra Columns plugin, broken with 404 error?

2014-06-25 Thread Lakey
Further investigations: It looks like JENKINS-19310 https://issues.jenkins-ci.org/browse/JENKINS-19310 broke it. On Thursday, 26 June 2014 13:51:26 UTC+10, Lakey wrote: OK, From looking through the source code I found that the following file: