Re: hudson.model.Queue import in Eclipse Jenkins 1.554.3 LTS

2014-07-15 Thread Marcus Jacobsson
I have tried to run those commands as well as update via the GUI in
Eclipse. However it looks like the source is missing from the jar file

If I jump between 1.535 and 1.536 I get this error so I do fell that
something is missing from the war-for-test.jar file.

-
The JAR file
M2_REPO\org\jenkins-ci\main\jenkins-war\1.554.3\jenkins-war.1.554.3-war-for-test.jar
has no source attachment.


// Compiled from Executable.java (version 1.3 : 47.0, super bit)
public class executable.Executable {

  // Method descriptor #5 ()V
  // Stack: 1, Locals: 1
  public Executable();
0  aload_0 [this]
1  invokespecial java.lang.Object() [1]
4  return
  Line numbers:
[pc: 0, line: 36]
  Local variable table:
[pc: 0, pc: 5] local: this index: 0 type: executable.Executable
}


On 16 July 2014 08:34, oliver gondža  wrote:

> Hi, if `mvn package` is able to build it without problems Eclipse is to
> blame for missing imports.
>
> Try running `mvn eclipse:eclipse` and refreshing the project from Eclipse.
>
> For sources that needs to be attached use `mvn dependency:sources`.
>
> --
> oliver
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: hudson.model.Queue import in Eclipse Jenkins 1.554.3 LTS

2014-07-15 Thread oliver gondža
Hi, if `mvn package` is able to build it without problems Eclipse is to  
blame for missing imports.


Try running `mvn eclipse:eclipse` and refreshing the project from Eclipse.

For sources that needs to be attached use `mvn dependency:sources`.

--
oliver

--
You received this message because you are subscribed to the Google Groups "Jenkins 
Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


hudson.model.Queue import in Eclipse Jenkins 1.554.3 LTS

2014-07-15 Thread Marcus Jacobsson
Hi

I'm working on porting a small plugin to Jenkins 1.554.3 and get a import 
error for the following classes when using Eclipse. I can still compile it 
and use the plugin in Jenkins but I get an error in Eclipe code viewer. If 
I try to go to the source of for example WaitingItem Eclipse ask me to 
attached the source, however I can browse the other all classes except the 
once listed bellow.

I noticed that this happened in Jenkins 1.536 so I assume it has something 
to do with 

   - Executor threads are now created only on demand.

Imports I can't get to work
  import hudson.model.Queue.WaitingItem;
  import hudson.model.Queue.Executable;
  import hudson.model.Queue.TransientTask;

Now I don't know if this is intended or not, if it's intended is there a 
better way to create reservations jobs for builds, in some cases I do need 
to create executors with minor logic. I'm doing something similar to the Slave 
Squatter Plugin 
.

/Marcus


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ANN] docker image for workflow plugin demo

2014-07-15 Thread Michael Neale
Looks nice - tested it out - really powerful way to show off new things 
while getting to the point (I am a docker fan of course).

Some minor things, some which may just be known bugs as this is a work in 
progress: 

* plugin/flow-support/images/32x32/terminal.png - was 404 

* When running the Job - worth pointing them to: 
http://boot2docker:8081/job/cd/1/ ? (is that what you mean by build top 
page?)

* When build gets to pause:  "go to build top page" 
If I look at: http://boot2docker:8081/job/cd/1/ - I click on "Input" step I 
get: 
http://boot2docker:8081/job/cd/1/execution/node/27/ - but no way to proceed 
- there doesn't seem to be anything to click on on the /cd/1 page to click 
on when paused. 

To get to the pause I need to pick the little drop down menu of the 
in-progress line and select "paused for input" then I can see the buttons 
to proceed - this seems odd - I would think it is linked to from the main 
job screen when paused - a bug? 

* I added undeploy('staging') to the step deploying prod - just leaves 
it a bit cleaner. 

* The "back to project" link doesn't seem to be a link.. 

Really neat - I love being able to see multi step demo "in a box" deploying 
things !






On Tuesday, July 15, 2014 1:26:11 AM UTC+10, Kohsuke Kawaguchi wrote:
>
> See https://github.com/jenkinsci/workflow-plugin/tree/master/demo for 
> instructions
>
> If anyone else wants to be on the "jenkinsci" org on DockerHub, let me 
> know and we can add you.
>
>
> -- 
> Kohsuke Kawaguchi 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 1.572

2014-07-15 Thread Andrew Gray
Thanks Daniel.

On Wednesday, 16 July 2014, Daniel Beck  wrote:

>
> On 15.07.2014, at 11:55, Andrew Gray  > wrote:
>
> > Suggest that the login text (to the right of the search box) be bold
> white rather than bold blue.
>
> This has already been fixed, scheduled for 1.574.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Help file for form fields

2014-07-15 Thread Karthik V S
Hi,

I want to create help files for the fields in my plugin which extends from 
Action.

The folder structure for my jelly files are as such

projectname/
src/
  main/
 resources/  
   com/
 mycompany/
   plugin-name/
MyAction/
   config.jelly


Where do I create the help file for the fields in this? under which path? I 
tried creating under the same folder and specified path as 
 plugin-name/MyAction/help-file.html in jelly file but on rendering it I 
got an error stating Help File not found.

I am using netbeans IDE and there is no webapp folder present under 
src/main/

Any pointers to this?

Many Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: 1.565.1 LTS RC testing started

2014-07-15 Thread Daniel Beck

On 15.07.2014, at 21:41, James Nord (jnord)  wrote:

> For the archive for other users - Jenkins.instance.doCancelQuietDown();

Alternatively, disable CSRF protection while canceling quiet down mode. Or use 
the Jenkins CLI.

But I agree, this shouldn't be necessary.

A solution at least for the cancel quiet down functionality is proposed here, 
so it'll probably be in .2 or .3:

https://github.com/jenkinsci/jenkins/pull/1306

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Review/Commit required for the following pull request: https://github.com/jenkinsci/puppet-jenkins/pull/128

2014-07-15 Thread laurent crisci
Hi guys,

As in subject, the Travis CI build failed because of issues unrelated to my 
commit.

Could someone please review my change and commit it if it meets this 
project standard and needs?

Best regards,
Laurent

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: 1.565.1 LTS RC testing started

2014-07-15 Thread James Nord (jnord)
> > > Cancelling a shutdown via the ui results in "this requires a post
> > > try posting"
> > >
> > > Hitting the post results in
> > > Problem accessing /cancelQuietDown. Reason:
> > >
> > >No valid crumb was included in the request
> >
> > Known issue, tracked as JENKINS-23020, but apparently not severe
> > enough, see discussion on PR from this comment on:
> > https://github.com/jenkinsci/jenkins/pull/877#issuecomment-42705303
> 
> Not sure I would agree with it not being severe enough especially as I just
> had to fix this by restarting a service.
> 
> (yes there is probably some API I could call via the script console - but are 
> we
> suggesting that we expect people to use that for simple functionality?)

For the archive for other users - Jenkins.instance.doCancelQuietDown();

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: 1.565.1 LTS RC testing started

2014-07-15 Thread James Nord (jnord)
> On 15.07.2014, at 20:47, James Nord (jnord)  wrote:
> 
> > Cancelling a shutdown via the ui results in "this requires a post try
> > posting"
> >
> > Hitting the post results in
> > Problem accessing /cancelQuietDown. Reason:
> >
> >No valid crumb was included in the request
> 
> Known issue, tracked as JENKINS-23020, but apparently not severe enough,
> see discussion on PR from this comment on:
> https://github.com/jenkinsci/jenkins/pull/877#issuecomment-42705303

Not sure I would agree with it not being severe enough especially as I just had 
to fix this by restarting a service.

(yes there is probably some API I could call via the script console - but are 
we suggesting that we expect people to use that for simple functionality?)

/James


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: 1.565.1 LTS RC testing started

2014-07-15 Thread Scott Hebert
Hi,

We have successfully tested the following acceptance test harness
tests against 1.565 RC1 using the Ericsson infrastructure:

- Active Directory
- Gerrit Trigger

Thanks,

Scott Hebert

On Mon, Jul 14, 2014 at 8:06 AM, oliver gondža  wrote:
>
> --- Forwarded message ---
> From: "oliver gondža" 
> To: "jenkinsci-us...@googlegroups.com" 
> Cc:
> Subject: 1.565.1 LTS RC testing started
> Date: Mon, 14 Jul 2014 13:14:10 +0200
>
> Hello everyone,
>
> Latest RC was made public last Wednesday. Join us testing what will become
> next LTS release!
>
> We have 10 days to make sure that all the fixes[1] are in place and no new
> regressions was introduced.
>
> Report your findings in this thread or in the test plan wiki.
>
> Download bits from
> http://mirrors.jenkins-ci.org/war-stable-rc/latest/jenkins.war
> Check community maintained LTS test plan
> https://wiki.jenkins-ci.org/display/JENKINS/LTS+1.565.x+RC+Testing
>
> [1]
> https://issues.jenkins-ci.org/secure/IssueNavigator.jspa?reset=true&jqlQuery=project+%3D+10172+AND+labels+%3D+%221.565.1-fixed%22
>
> Thank you
> --
> oliver
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: 1.565.1 LTS RC testing started

2014-07-15 Thread James Nord (jnord)
> 
> On 15.07.2014, at 20:14, James Nord (jnord)  wrote:
> 
> > when upgrading plugins if I deselect "Restart Jenkins when installation is
> complete and no jobs are running" then it automatically reselects itself.
> 
> If Jenkins is already in Quiet Down mode (red banner) when you were
> visiting that page, then this is an old issue (since 1.532 or earlier). 
> JENKINS-
> 21383 is a bit different but I think they are related.

Fair enough if it's an existing issue - had never seen it before on 1.532.3


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: 1.565.1 LTS RC testing started

2014-07-15 Thread Daniel Beck

On 15.07.2014, at 21:12, Daniel Beck  wrote:

> On 15.07.2014, at 20:14, James Nord (jnord)  wrote:
> 
>> when upgrading plugins if I deselect "Restart Jenkins when installation is 
>> complete and no jobs are running" then it automatically reselects itself.
> 
> If Jenkins is already in Quiet Down mode (red banner) when you were visiting 
> that page, then this is an old issue (since 1.532 or earlier). JENKINS-21383 
> is a bit different but I think they are related.

The workaround in the situation you mention, if occuring while Jenkins is 
quieting down, should be canceling the quiet down mode via build queue or 
Manage Jenkins, then checking the checkbox again.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: 1.565.1 LTS RC testing started

2014-07-15 Thread Daniel Beck

On 15.07.2014, at 20:47, James Nord (jnord)  wrote:

> Cancelling a shutdown via the ui results in
> "this requires a post try posting"
> 
> Hitting the post results in 
> Problem accessing /cancelQuietDown. Reason:
> 
>No valid crumb was included in the request

Known issue, tracked as JENKINS-23020, but apparently not severe enough, see 
discussion on PR from this comment on:
https://github.com/jenkinsci/jenkins/pull/877#issuecomment-42705303

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: 1.565.1 LTS RC testing started

2014-07-15 Thread Daniel Beck

On 15.07.2014, at 20:14, James Nord (jnord)  wrote:

> when upgrading plugins if I deselect "Restart Jenkins when installation is 
> complete and no jobs are running" then it automatically reselects itself.

If Jenkins is already in Quiet Down mode (red banner) when you were visiting 
that page, then this is an old issue (since 1.532 or earlier). JENKINS-21383 is 
a bit different but I think they are related.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: 1.565.1 LTS RC testing started

2014-07-15 Thread James Nord (jnord)
Cancelling a shutdown via the ui results in
"this requires a post try posting"

Hitting the post results in 
Problem accessing /cancelQuietDown. Reason:

No valid crumb was included in the request


> -Original Message-
> From: jenkinsci-dev@googlegroups.com [mailto:jenkinsci-
> d...@googlegroups.com] On Behalf Of James Nord (jnord)
> Sent: 15 July 2014 19:15
> To: jenkinsci-dev@googlegroups.com
> Subject: RE: 1.565.1 LTS RC testing started
> 
> when upgrading plugins if I deselect "Restart Jenkins when installation is
> complete and no jobs are running" then it automatically reselects itself.
> 
> /James
> 
> > -Original Message-
> > From: jenkinsci-dev@googlegroups.com [mailto:jenkinsci-
> > d...@googlegroups.com] On Behalf Of James Nord (jnord)
> > Sent: 15 July 2014 19:01
> > To: jenkinsci-dev@googlegroups.com
> > Subject: RE: 1.565.1 LTS RC testing started
> >
> > I have observed a slower startup time in this when compared to 1.532.3
> > There's more churn in the GC and indeed the full gc time is up from
> > .2s to 2s from startup to display the jenkinsURL/ page with all
> > jobs/folders/health reported.
> >
> >
> > > -Original Message-
> > > From: jenkinsci-dev@googlegroups.com [mailto:jenkinsci-
> > > d...@googlegroups.com] On Behalf Of oliver gondža
> > > Sent: 14 July 2014 13:07
> > > To: jenkinsci-dev@googlegroups.com
> > > Subject: Fwd: 1.565.1 LTS RC testing started
> > >
> > >
> > > --- Forwarded message ---
> > > From: "oliver gondža" 
> > > To: "jenkinsci-us...@googlegroups.com"  > > us...@googlegroups.com>
> > > Cc:
> > > Subject: 1.565.1 LTS RC testing started
> > > Date: Mon, 14 Jul 2014 13:14:10 +0200
> > >
> > > Hello everyone,
> > >
> > > Latest RC was made public last Wednesday. Join us testing what will
> > > become next LTS release!
> > >
> > > We have 10 days to make sure that all the fixes[1] are in place and
> > > no new regressions was introduced.
> > >
> > > Report your findings in this thread or in the test plan wiki.
> > >
> > > Download bits from
> > > http://mirrors.jenkins-ci.org/war-stable-rc/latest/jenkins.war
> > > Check community maintained LTS test plan https://wiki.jenkins-
> > > ci.org/display/JENKINS/LTS+1.565.x+RC+Testing
> > >
> > > [1]
> > > https://issues.jenkins-
> > >
> >
> ci.org/secure/IssueNavigator.jspa?reset=true&jqlQuery=project+%3D+1017
> > > 2+AND+labels+%3D+%221.565.1-fixed%22
> > >
> > > Thank you
> > > --
> > > oliver
> > >
> > > --
> > > You received this message because you are subscribed to the Google
> > > Groups "Jenkins Developers" group.
> > > To unsubscribe from this group and stop receiving emails from it,
> > > send an email to jenkinsci-dev+unsubscr...@googlegroups.com.
> > > For more options, visit https://groups.google.com/d/optout.
> >
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Jenkins Developers" group.
> > To unsubscribe from this group and stop receiving emails from it, send
> > an email to jenkinsci-dev+unsubscr...@googlegroups.com.
> > For more options, visit https://groups.google.com/d/optout.
> 
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: 1.565.1 LTS RC testing started

2014-07-15 Thread James Nord (jnord)
when upgrading plugins if I deselect "Restart Jenkins when installation is 
complete and no jobs are running" then it automatically reselects itself.

/James

> -Original Message-
> From: jenkinsci-dev@googlegroups.com [mailto:jenkinsci-
> d...@googlegroups.com] On Behalf Of James Nord (jnord)
> Sent: 15 July 2014 19:01
> To: jenkinsci-dev@googlegroups.com
> Subject: RE: 1.565.1 LTS RC testing started
> 
> I have observed a slower startup time in this when compared to 1.532.3
> There's more churn in the GC and indeed the full gc time is up from .2s to 2s
> from startup to display the jenkinsURL/ page with all jobs/folders/health
> reported.
> 
> 
> > -Original Message-
> > From: jenkinsci-dev@googlegroups.com [mailto:jenkinsci-
> > d...@googlegroups.com] On Behalf Of oliver gondža
> > Sent: 14 July 2014 13:07
> > To: jenkinsci-dev@googlegroups.com
> > Subject: Fwd: 1.565.1 LTS RC testing started
> >
> >
> > --- Forwarded message ---
> > From: "oliver gondža" 
> > To: "jenkinsci-us...@googlegroups.com"  > us...@googlegroups.com>
> > Cc:
> > Subject: 1.565.1 LTS RC testing started
> > Date: Mon, 14 Jul 2014 13:14:10 +0200
> >
> > Hello everyone,
> >
> > Latest RC was made public last Wednesday. Join us testing what will
> > become next LTS release!
> >
> > We have 10 days to make sure that all the fixes[1] are in place and no
> > new regressions was introduced.
> >
> > Report your findings in this thread or in the test plan wiki.
> >
> > Download bits from
> > http://mirrors.jenkins-ci.org/war-stable-rc/latest/jenkins.war
> > Check community maintained LTS test plan https://wiki.jenkins-
> > ci.org/display/JENKINS/LTS+1.565.x+RC+Testing
> >
> > [1]
> > https://issues.jenkins-
> >
> ci.org/secure/IssueNavigator.jspa?reset=true&jqlQuery=project+%3D+1017
> > 2+AND+labels+%3D+%221.565.1-fixed%22
> >
> > Thank you
> > --
> > oliver
> >
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Jenkins Developers" group.
> > To unsubscribe from this group and stop receiving emails from it, send
> > an email to jenkinsci-dev+unsubscr...@googlegroups.com.
> > For more options, visit https://groups.google.com/d/optout.
> 
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: 1.565.1 LTS RC testing started

2014-07-15 Thread James Nord (jnord)
I have observed a slower startup time in this when compared to 1.532.3
There's more churn in the GC and indeed the full gc time is up from .2s to 2s 
from startup to display the jenkinsURL/ page with all jobs/folders/health 
reported.


> -Original Message-
> From: jenkinsci-dev@googlegroups.com [mailto:jenkinsci-
> d...@googlegroups.com] On Behalf Of oliver gondža
> Sent: 14 July 2014 13:07
> To: jenkinsci-dev@googlegroups.com
> Subject: Fwd: 1.565.1 LTS RC testing started
> 
> 
> --- Forwarded message ---
> From: "oliver gondža" 
> To: "jenkinsci-us...@googlegroups.com"  us...@googlegroups.com>
> Cc:
> Subject: 1.565.1 LTS RC testing started
> Date: Mon, 14 Jul 2014 13:14:10 +0200
> 
> Hello everyone,
> 
> Latest RC was made public last Wednesday. Join us testing what will become
> next LTS release!
> 
> We have 10 days to make sure that all the fixes[1] are in place and no new
> regressions was introduced.
> 
> Report your findings in this thread or in the test plan wiki.
> 
> Download bits from
> http://mirrors.jenkins-ci.org/war-stable-rc/latest/jenkins.war
> Check community maintained LTS test plan https://wiki.jenkins-
> ci.org/display/JENKINS/LTS+1.565.x+RC+Testing
> 
> [1]
> https://issues.jenkins-
> ci.org/secure/IssueNavigator.jspa?reset=true&jqlQuery=project+%3D+1017
> 2+AND+labels+%3D+%221.565.1-fixed%22
> 
> Thank you
> --
> oliver
> 
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 1.572

2014-07-15 Thread Daniel Beck

On 15.07.2014, at 11:55, Andrew Gray  wrote:

> Suggest that the login text (to the right of the search box) be bold white 
> rather than bold blue.

This has already been fixed, scheduled for 1.574.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: my plugin can't display in "add build step" and "add post-build action"

2014-07-15 Thread Vincent Latombe
Hi Frankie,

did you put the @Extension annotation on the PublisherDescriptor?

Vincent


2014-07-15 12:48 GMT+02:00 Frankie Huang :

>  Hi All,
>
>
>
> I developed a Publisher class which extends Recorder, and
> PublisherDescriptor which extends BuildStepDescriptor.
>
>
>
> It is very simple, I can found it in “Manage Plugins”. But when I
> configure a project, I can’t add it as a “build step” or “post-build
> action”.
>
>
>
> Is there anything I miss?
>
>
>
> Thanks!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


my plugin can't display in "add build step" and "add post-build action"

2014-07-15 Thread Frankie Huang
Hi All,

I developed a Publisher class which extends Recorder, and PublisherDescriptor 
which extends BuildStepDescriptor.

It is very simple, I can found it in "Manage Plugins". But when I configure a 
project, I can't add it as a "build step" or "post-build action".

Is there anything I miss?

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins 1.572

2014-07-15 Thread Andrew Gray
Hi All,

I'm liking the new updated Jenkins UI and the black title bar.

Suggest that the login text (to the right of the search box) be bold white
rather than bold blue.

Regards,

Andrew

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


build.getEnvironment(listener) returns EnvVars will null platform

2014-07-15 Thread Chris Withers

Hi All,

Apologies for any stupidity on my part, I'm not a Java developer but I 
am trying to fix this bug:


https://issues.jenkins-ci.org/browse/JENKINS-16176

After some pain caused by aforementioned stupidity, I've managed to get 
Eclipse up and running connected to a "mvn hpi:run" session on Windows 7 
and replicating the problem, in this case using a linux slave attached 
to the master running 1.532.3 on the win7 box.


I can't get Eclipse to find the sources for anything other than the 
ShingingPanda git checkout I have (any pointers on how to fix that?) 
which has certainly made debugging challenging but I believe the problem 
starts on this line:


https://github.com/jenkinsci/shiningpanda-plugin/blob/2ea4b1fe6c3d7c50f643c887f3041c23935ade92/src/main/java/jenkins/plugins/shiningpanda/utils/BuilderUtil.java#L61

build is a FreeStyleBuild instance and the EnvVars it returns has a 
platform of null. How can that happen?


Regardless, that would seem to cause problems here:

https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/hudson/EnvVars.java#L140

..resulting in the server's pathSeparator being used instead of the 
platform of the slaves.


Can anyone give me pointers as to how to fix this or make more progress?

Chris

--
Simplistix - Content Management, Batch Processing & Python Consulting
   - http://www.simplistix.co.uk

--
You received this message because you are subscribed to the Google Groups "Jenkins 
Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.