Parameterize server in Publish Over FTP

2015-05-27 Thread Tusike
Hi! I'm trying to set up a job to publish some files to a remote FTP server. My problem is that the FTP server to which the files are sent should be configurable, and I don't know how to do that. What I imagine is something like this: 1) Job A determines which FTP server the files should be

Correct way to use Groovy library in PostBuild script

2015-05-27 Thread Mark Syms
We'd like to define (by means of a job-dsl-plugin template) a Groovy postbuild step that performs some transformation of an HTML file that is generated as part of the build job and add sections to the Job summary page. We have a script which works in a standalone test which uses the NekoHTML

Re: Jenkins Migration from OS?

2015-05-27 Thread Les Mikesell
On Wed, May 27, 2015 at 1:13 AM, Kavitha Bhaskaran kukki.kanch...@gmail.com wrote: Ok. 2 more questions 1. How about between Scientific Linux and RHEL? Likewise, almost identical. CentOS and Scientific Linux are rebuilds from the RHEL sources. But since jenkins is java you should be able to

Re: git clone impossible while slave is connecte

2015-05-27 Thread Mark Waite
You might try proving that the problem is specific to the slave by modifying the job definition to force it to run on only on the master node. In the job configuration page for that job there is a field which iwll allow you to restrict which nodes can run the job. Place master into that field

ERROR:bluetooth_adapter_win.cc(102)] NOT IMPLEMENTED

2015-05-27 Thread saran raj
Hi I am getting the below error when i am trying to launch chrome via Plugin *Execute Set of Scripts *in windows batch command. C:\Program Files (x86)\Google\Chrome\ApplicationChrome.exe*03:21:58* [2904:3936:0527/032157:ERROR:bluetooth_adapter_win.cc(102)] NOT IMPLEMENTED*03:27:02*

Better Logging for Jenkins Shutdown

2015-05-27 Thread Rob Mandeville
My Jenkins server went down last night, and the log showed no signs of trouble. I am running: Jenkins 1.565.1.LTS on its own Winstone server on Java HotSpot 64 bit 1.8.0_25-b17 on Ubuntu 13.03 Saucy Salamander (yes, I know it's out of date) on a vSphere VM. The log entries ended at 5:20

git clone impossible while slave is connecte

2015-05-27 Thread cd
Hello, I have an interesting problem. I have a server running jenkins (linux) and a slave for running jobs (linux). When the slave is NOT connected then i can clone repos. BUT when the slave is connected, either from the master or the slave, then the job i stuck at cloning into Any

Re: continuous integration for DOTNET using Jenkins and GIT

2015-05-27 Thread lpkrovi
Hi when am trying to build dot net application am getting bellow error *error MSB4019: The imported project C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets was not found.* * in jenkins *Under the Build section click the “Add

Re: continuous integration for DOTNET using Jenkins and GIT

2015-05-27 Thread Slide
It looks like the project you are building is using specific stuff from the Visual Studio msbuild stuff. You may need to rework your project files for them to build correctly without Visual Studio installed. On Wed, May 27, 2015 at 11:11 AM lpkr...@gmail.com wrote: Hi when am trying to build

Re: continuous integration for DOTNET using Jenkins and GIT

2015-05-27 Thread Mark Waite
Or, just admit that installing Visual Studio on your build machine is simpler and easier than reworking your build environment to not depend on it. If you modify the build to not depend on Visual Studio, you may break the developers, or require that they work with less than the full features of

RE: text-finder-plugin

2015-05-27 Thread Angela Kim
Before reinventing the wheel, I wanted to see if something already existed. -- 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

Re: [workflow-plugin] Error script.sh: command not found when running shell script

2015-05-27 Thread Boris Chavez-Bravo
I think I have been able to get around this issue by wrapping the call to the script through a batch call: withEnv([PATH=C:\\cygwin\\bin;%PATH%]) { bat C:\\cygwin\\bin\\bash ./my_script.sh ${arg1} ${arg2} } On Wednesday, May 27, 2015 at 1:07:41 PM UTC-4, LesMikesell wrote: On Thu, Jan 8,

Re: [workflow-plugin] Error script.sh: command not found when running shell script

2015-05-27 Thread Simon Richter
Hi, On 27.05.2015 17:03, Boris Chavez-Bravo wrote: I am facing the exact same issue. Has anyone come across a solution for this problem? This smells like one of those cases where you should have been calling ./script.sh, as the current directory is not on the search path for very good

RE: text-finder-plugin

2015-05-27 Thread Matthew.Webber
Why not just add another build step that does “find” and “grep”, and exits with the appropriate return code? (I’m assuming you’re on Linux here) Matthew From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Angela Kim Sent: 27 May 2015 15:48 To:

Re: git clone impossible while slave is connecte

2015-05-27 Thread cd
The job has been running on the master for a couple of month. Due to heavy load we have added a slave. When I run on the slave I specify the job to run on the slave specifically. I have tried both using credential passed from the master and adding credentials on the slave. When the connection

Re: Unstoppable Jenkins job?

2015-05-27 Thread Suckow, Thomas J
Assuming this is on the master node, you could get thread stack traces from /threadDump (link in Manage Jenkins-System Information) I believe it would be a thread labeled Executor... I don't believe Jenkins can/will forcibly pull the rug out from under an executor. So if something about the

Re: How to launch on-demand slaves immediately when needed?

2015-05-27 Thread Ed Donahue III
I've seen adding this -Djava.hudson.slaves.NodeProvisioner.MARGIN=1 to your JENKINS_JAVA_OPTIONS, helps speed up when a slave is kicked off. Worded for me with mesos-jenkins-docker setup. On Monday, July 21, 2014 at 3:27:49 AM UTC-4, Susanne Lindgren wrote: Short version I'm experiencing

Re: Better Logging for Jenkins Shutdown

2015-05-27 Thread Suckow, Thomas J
Nothing in the system logs? From: Rob Mandeville rmandevi...@dekaresearch.commailto:rmandevi...@dekaresearch.com Reply-To: jenkinsci-users@googlegroups.commailto:jenkinsci-users@googlegroups.com jenkinsci-users@googlegroups.commailto:jenkinsci-users@googlegroups.com Date: Wednesday, May 27,

Re: Git credentials and scm-sync-configuration plugin

2015-05-27 Thread Costya Regev
Hi , Did you manage to solve this problem ? On Friday, May 15, 2015 at 3:07:41 AM UTC+3, dougla...@gmail.com wrote: I couldn't find any way of entering Git credentials that the scm-sync-configuration would use. Am I missing something? I have created credentials for our git server, and I am

Re: git clone impossible while slave is connecte

2015-05-27 Thread cd
The job has been running on the master for a couple of month. Due to heavy load we have added a slave. When I run on the slave I specify the job to run on the slave specifically. I have tried both using credential passed from the master and adding credentials on the slave. When the connection

text-finder-plugin

2015-05-27 Thread Angela Kim
We have a requirement to add a specific text comment to all of our source code. As a validation, during each CI build the changed files should be scanned to ensure that the required text has been added. If the comment does not exist, then the build should fail. -- You received this message

[workflow] - First failing Newbie (dir) steps

2015-05-27 Thread Markus Shorty Uckelmann
Hi all, I just started to play a bit with the workflow-plugin and got stuck with dir step. My awesome code: stage 'box' node ('admins') { def dir = '7packer-boxes' sh mkdir ${dir} || : echo Changing to dir ${dir} sh pwd dir(${dir}) { sh pwd } } The build starts, works to the

Re: git clone impossible while slave is connecte

2015-05-27 Thread cd
...and even if I disconnect i persists, the only way I have found to solve it is reboot... -- 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

Re: [workflow-plugin] Error script.sh: command not found when running shell script

2015-05-27 Thread Boris Chavez-Bravo
I am facing the exact same issue. Has anyone come across a solution for this problem? On Thursday, January 8, 2015 at 1:35:42 PM UTC-5, Jesse Glick wrote: On Friday, December 5, 2014 6:35:33 AM UTC-5, Rupali wrote: So I am concluding that Shell script in in *workflow step* is not working

Re: [workflow-plugin] Error script.sh: command not found when running shell script

2015-05-27 Thread Les Mikesell
On Thu, Jan 8, 2015 at 12:35 PM, Jesse Glick jgl...@cloudbees.com wrote: On Friday, December 5, 2014 6:35:33 AM UTC-5, Rupali wrote: So I am concluding that Shell script in in workflow step is not working on Windows slave. Or more precisely, that shell scripts run via durable-task-plugin

continuous integration for DOTNET using Jenkins and GIT

2015-05-27 Thread lpkrovi
Hi, I am using GIT and jenkin for continuous integration. my jenkins and GIT installed in linux, want to build dot net application in jenkins . could you please let me know the steps automated Continuous integration for dotnet application.(include regression testing,code review,code

Re: continuous integration for DOTNET using Jenkins and GIT

2015-05-27 Thread Mark Waite
I think you've asked for too much detail for a mailing list posting. You might start with http://justinramel.com/2013/01/15/5-minute-setup/ and review the material there, or you might start with the Jenkins wiki pages like https://wiki.jenkins-ci.org/display/JENKINS/MSBuild+Plugin I've run

RE: Better Logging for Jenkins Shutdown

2015-05-27 Thread Rob Mandeville
Thanks! It got hit by the OOM killer. I should have thought of that first. --Rob -Original Message- From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Daniel Beck Sent: Wednesday, May 27, 2015 12:40 PM To: jenkinsci-users@googlegroups.com

Re: Better Logging for Jenkins Shutdown

2015-05-27 Thread Daniel Beck
Check the system logs. Too large of an Xmx may have Linux kill off your process (oom-killer). On 27.05.2015, at 15:09, Rob Mandeville rmandevi...@dekaresearch.com wrote: My Jenkins server went down last night, and the log showed no signs of trouble. I am running: Jenkins 1.565.1.LTS on

Re: Jenkins Migration from OS?

2015-05-27 Thread Kavitha Bhaskaran
Ok. 2 more questions 1. How about between Scientific Linux and RHEL? 2. So you are saying, I can strip just the Jenkins setting from say Scientific Linux and add it to RHEL? On Tuesday, May 26, 2015 at 10:02:40 PM UTC-7, LesMikesell wrote: On Tue, May 26, 2015 at 11:01 PM, Kavitha

Re: Jenkins Wallpapers?

2015-05-27 Thread Kavitha Bhaskaran
Thanks SteloisP and Christpher Orr - I was exactly looking for the Meme - thanks! On Friday, May 22, 2015 at 9:36:10 AM UTC-7, Christopher Orr wrote: Sounds like this one: https://wiki.jenkins-ci.org/display/JENKINS/Meme+Generator+Plugin On 22/05/15 07:21, Kavitha Bhaskaran wrote: Hi

Re: [workflow-plugin] getting error: java.io.NotSerializableException: java.util.HashMap$Entry

2015-05-27 Thread Angelo Cuttitta
Dear, I'm facing to the same kind of issue, trying to run multiple jobs in parallel. Hence, unfortunately, I can't help you... :-( I was just wondering if you found a solution, since you posted your message? Kr, A. Le mardi 31 mars 2015 21:58:27 UTC+2, Adam R. Paul a écrit : Hello,

Re: Git credentials and scm-sync-configuration plugin

2015-05-27 Thread douglas . royds
Nope, still depending on the under-the-bonnet `credential-helper` work-around, sorry. -- 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

Re: Git credentials and scm-sync-configuration plugin

2015-05-27 Thread douglas . royds
Nope, still depending on the under-the-bonnet `credential-helper` work-around, sorry. On Thursday, 28 May 2015 03:15:53 UTC+12, Costya Regev wrote: Hi , Did you manage to solve this problem ? On Friday, May 15, 2015 at 3:07:41 AM UTC+3, dougla...@gmail.com wrote: I couldn't find any way

Permission denied when using shell command on Mac Mesos slave

2015-05-27 Thread Ryanivanka
Hi Experts, I met a problem on Mac. I add my mac mini to a mesosphere infrastructur*e, it works ok, the executor can launch right on mac slave. But when I want to execute some shell command, like “cp”, “mount”, it show as permission control. It shows jenkins slave is using “root” user. Why

Re: text-finder-plugin

2015-05-27 Thread Christopher Orr
On 27/05/15 16:48, Angela Kim wrote: We have a requirement to add a specific text comment to all of our source code. As a validation, during each CI build the changed files should be scanned to ensure that the required text has been added. If the comment does not exist, then the build should

Re: text-finder-plugin

2015-05-27 Thread Angela Kim
Whoops... Question is if the text-find-plugin can be used to scan the changed files for the required text? On May 27, 2015 7:27 PM, Christopher Orr ch...@orr.me.uk wrote: On 27/05/15 16:48, Angela Kim wrote: We have a requirement to add a specific text comment to all of our source code. As a

jira plugin

2015-05-27 Thread g.fer.ordas
Hi I would like to know about a jura plugin which will simple raise a new issue upon completion of a job. I got the following installed: https://wiki.jenkins-ci.org/display/JENKINS/JIRA+Plugin I have defined in my job : Post build Action -Create Jira Issue But for some reason it does not

Jenkins + Selenium: Selenium Configuration won't start on slave

2015-05-27 Thread Astou Sene
Hello! I have Jenkins with Selenium plugin setup on a Linux server (Red Hat Enterprise Linux Server release 6.6 (Santiago) Linux 2.6.32-504.8.1.el6.x86_64 #1 SMP Fri Dec 19 12:09:25 EST 2014 x86_64 x86_64 x86_64 GNU/Linux) and I am trying to connect some Windows 7 slaves to it. The slaves are

Re: Jenkins Migration from OS?

2015-05-27 Thread Stephen Connolly
I've known people to move between Linux and windows just by moving their JENKINS_HOME (though in that case there is some symlink fun and you'd probably want to do a dry-run) On Wednesday, May 27, 2015, Kavitha Bhaskaran kukki.kanch...@gmail.com wrote: Ok. 2 more questions 1. How about between