Re: Error from Gradle Plug-in retrieving gradle executable

2014-07-10 Thread Matt Zimmer
Hi Kuldeep, In my case, it was a transient issue that resolved with no action on my part. Best, Matt On Wed, Jul 9, 2014 at 11:05 PM, Kuldeep singh wrote: > Hi Matt, > I am facing same problem, did you find out some solution for it? > > Kuldeep > > > On Tuesday, April 16, 2013 5:36:56 AM UTC

Re: Jenkins crashing, GLib error

2014-07-10 Thread Adam Daughterson
This is a really old thread, but I just saw this crash today. Did you ever figure out what was happening? On Thursday, September 13, 2012 7:06:26 AM UTC-6, Bejoy Jaison wrote: > > > Thanks for the information. > > We are still seeing many crashes: > > GLib-WARNING (recursed) **: gmain.c:1429: ref

Re: Frustration with build-step/post-build-action access...

2014-07-10 Thread Les Mikesell
On Thu, Jul 10, 2014 at 12:29 AM, Jeff wrote: > Thanks...that's what I am trying to do. I have successfully copied the > artifacts. Now I need to SCP them to the server BEFORE I run a remote SSH > script to install them. > > Using the SCP plugin would help me not have to manually manage credenti

Re: Publishing vstest results?

2014-07-10 Thread Glenn V
The xslt does not transform to MsTest format, but to JUnit format. You can import the resulting xml file with the "publish junit test result report" post build task. Kind regards, Glenn On Monday, June 23, 2014 8:55:27 PM UTC+2, Jeff Dege wrote: > > OK, I have added a Windows Batch Command task

Re: Publishing only changed files from git repo

2014-07-10 Thread Mark Waite
If rsync is available on the build machine and on the destination web server, and if you have ssh access to the destination web server, then you could add a last build step to use the rsync command to copy changed files from the build machine to the destination web server. This blog posting may he

Publishing only changed files from git repo

2014-07-10 Thread David Fox
My current "build" (all static html/css/js) is working as expected, but it's publishing *every file* over FTP *every time* a build triggers. I'm using a git repo (BitBucket) to hook the build notification, but how can I implement an incremental build i.e. only publish files that have changed si

Re: [Need Guidance] GIT Setup in Jenkins to find the correct pom.xml file

2014-07-10 Thread Mark Waite
You could try the following steps for each of the Jenkins jobs you want to build: 1. Define a new freestyle job 2. Define the SCM as git, with the git URL and the "Branches to build" entered there 3. Add a build step "Invoke top-level maven targets" and enter the maven goals to exe

Re: Jenkins: How to restrict ssh credentials use in slave node configuration

2014-07-10 Thread Stephen Connolly
Fixed in 1.15... Sñr Beck can get the update immediately from the update center he uses... if you are not in that club and don't want to wait the 8-24h for the OSS update center to pick it up you can download directly from http://jenkins-updates.cloudbees.com/download/plugins/credentials/ On 10 J

Re: Frustration with build-step/post-build-action access...

2014-07-10 Thread Daniel Beck
> I wouldn't call it "misusing". I'm simply working with what is there (that I > knew about). ... for a problem 'what is there' was not designed to solve. Law of the instrument ;-) > Since I can't do SSH in post-build I am limited to what I can do, hence my > frustration. With the emergence

Re: Jenkins: How to restrict ssh credentials use in slave node configuration

2014-07-10 Thread Daniel Beck
On 10.07.2014, at 12:03, Stephen Connolly wrote: > Credentials for use against slave nodes only should be set to scope SYSTEM... > that's what SYSTEM scope is for... Each credential should only be available for configuring one specific slave, and not the other slave. Maybe domain restrictions

When is the Copy Artifact plugin next likely to be released?

2014-07-10 Thread Sarah Woodall
I'm interested in getting a version of the Copy Artifact plugin containing a fix for https://issues.jenkins-ci.org/browse/JENKINS-22590, which I hope will make promoted builds work properly with matrix jobs. I see that the fix was checked in on 19 May, but there hasn't been a release of the plu

Re: Jenkins: How to restrict ssh credentials use in slave node configuration

2014-07-10 Thread Stephen Connolly
Credentials for use against slave nodes only should be set to scope SYSTEM... that's what SYSTEM scope is for... On 10 July 2014 09:21, martin flehmig wrote: > Dear Jenkins community! > > We have the following problem: > > * We have two (disjunct) projects A and B each with several jobs that >

[Need Guidance] GIT Setup in Jenkins to find the correct pom.xml file

2014-07-10 Thread sai ram
​I have a Git repository that contains several project with same root directory with the following structure, +-repo +--Root folder +--- projectA +--- pom.xml +--- projectB +--- pom.xml I want to built independent jenkins jobs. I need to know what is the location that I

Re: workspace cleanup plugin 0.2.1: Cannot delete workspace

2014-07-10 Thread Andrei Ababei
Sort of a work around: 1.Uncheck the workspace cleanup 2.Save the changes 3.Check the workspace cleanup back 4.Save the changes On Monday, July 7, 2014 9:47:53 AM UTC+3, jv wrote: > > So I filed an issue: https://issues.jenkins-ci.org/browse/JENKINS-23693 > > Am 06.07.2014 23:31, schrieb felix:

Re: Jenkins: How to restrict ssh credentials use in slave node configuration

2014-07-10 Thread sai ram
Hi All, Please help me out with the following, I have a Git repository that contains several project with same root directory with the following structure, +-repo +--Root folder +--- pro

Jenkins: How to restrict ssh credentials use in slave node configuration

2014-07-10 Thread martin flehmig
Dear Jenkins community! We have the following problem: * We have two (disjunct) projects A and B each with several jobs that are organized in folders (using the folder plugin) according to the related project. * We have configured an Unix slave node for each project (called NA,NB). Basicall

Re: Frustration with build-step/post-build-action access...

2014-07-10 Thread Stephen Connolly
To help understand, here is what the key difference between build steps and publishers is. Publishers are designed for tasks that should run at most once Archiving artifacts does not make sense to run repeatedly Emailing build results does not make sense to run repeatedly SCPing *archived a