Re: [workflow plugin] is there a way to get workflow node steps to show in node history?

2014-12-16 Thread Kevin Browder
Basically I'm trying to replace a bunch of jobs that are in one-shot vms (that get removed after a while with a RetentionStrategy and get taken offline after a single run with a RunListener) and combine them into a single workflow, ideally the same behavior would apply. Seems like swapping my RunL

Re: Github SQS not working, how to troubleshoot?

2014-12-16 Thread umiyosh umiyosh
I have the same issue. this plugin does not work, so I'll to try to implement my own worker program. 2014年2月12日水曜日 3時05分17秒 UTC+9 Gytis Greitai: > > I have Jenkins under firewall and private organization repository on > github. > > I would like to setup Amazon SQS to trigger builds, everything

Re: Github SQS not working, how to troubleshoot?

2014-12-16 Thread Joe Van Dyk
Getting the same thing, did you have any luck? On Tuesday, February 11, 2014 10:05:17 AM UTC-8, Gytis Greitai wrote: > > I have Jenkins under firewall and private organization repository on > github. > > I would like to setup Amazon SQS to trigger builds, everything seems to be > ok, but the bu

Re: [workflow-plugin] dependencies between parallel steps?

2014-12-16 Thread Kohsuke Kawaguchi
I think JENKINS-26052 would be a natural solution for this. parallel() has a different emphasis from yours. I also thought about building a library on top of workflow that lets you declare tasks with dependencies and have the library figure out

Re: Is any one else seeing ssh issues on Redhat Cent-OS recently?

2014-12-16 Thread rtrask
> A couple of other pieces of information: > uname -a Linux ? 2.6.18-371.11.1.el5 #1 SMP Mon Jun 30 04:51:39 EDT 2014 x86_64 x86_64 x86_64 GNU/Linux # ssh -v OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008 -- You received this message because you are subscribed to the Googl

Is any one else seeing ssh issues on Redhat Cent-OS recently?

2014-12-16 Thread rtrask
I installed Jenkins > 18 months ago, and it has worked well over that period. I configured it the user authentication to use SSHD, and we are using ssh to connect to our CVS server, but I don't believe we are using it anywhere else. About 2 weeks ago, I was not able to log in as admin. After a

Re: [workflow plugin] is there a way to get workflow node steps to show in node history?

2014-12-16 Thread Kohsuke Kawaguchi
I'm not sure if I understand the question. I guess you want to know what has run on a given hudson.model.Node? When the only things that run on Node was hudson.model.Run, RunListener was sufficient to keep track of this, but with workflow, we are running PlaceholderTask on Executor, and there's cu

Re: Failed to serialize org.jenkinsci.plugins.workflow.actions.ErrorAction when declaring classes in csp-global-lib

2014-12-16 Thread Kohsuke Kawaguchi
The exception here is that it fails to persist ErrorAction with flow because ErrorAction.error refers to MultipleCompilationErrorsException, which in turn refers to ErrorCollector that sucks in CompilerConfiguration, which has references to all sorts of not-so-kosher objects. In one sense, this al

Re: How to Use Different Dependencies in Each Branch?

2014-12-16 Thread Daniel Beck
Both may only be available on the experimental update center as beta versions. There's an option in global Jenkins configuration to enable the experimental UC. Otherwise, just download from http://updates.jenkins-ci.org/experimental/latest/ On 16.12.2014, at 22:41, John Mellor wrote: > Thanks!

RE: How to Use Different Dependencies in Each Branch?

2014-12-16 Thread John Mellor
Thanks! However, neither one of those seem to be listed in the plugin manager as available plugins. Where do you get them? -Original Message- From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Daniel Beck Sent: December-16-14 13:51 To: jenkins

Re: How to Use Different Dependencies in Each Branch?

2014-12-16 Thread Daniel Beck
YAML Project Plugin or Literate Plugin might help. Basically, a job type that gets most of the "how to build" instructions from SCM. On 16.12.2014, at 17:00, John Mellor wrote: > I'm building a large number of C++ projects on a Ubuntu host using the > Jenkins free-style multi-branch project ty

Jenkins Newsletter - Continuous Information: Volume 6

2014-12-16 Thread Lisa Wells
To view this email as a web page, click here Winter 2014 - Volume 6 Jenkins Marches Towards World Domination [image: SDTimes2014.gif] [image: bossie_awards_2014_primary-100463112-carousel.idge.jpg] [image: Geek-Choice-Awards-CI-Server-

Re: IOException: Premature EOF when downloading archive.zip with Ant

2014-12-16 Thread Chris Suich
Well the archive.zip is served by Jenkins. We have both Jenkins slaves and some automation machines (not running slaves) which download the file and both are experiencing this issue. On Tuesday, December 16, 2014 11:28:49 AM UTC-5, walter.kelt wrote: > > Does the download fail if you run ANT out

Re: IOException: Premature EOF when downloading archive.zip with Ant

2014-12-16 Thread wakelt
Does the download fail if you run ANT outside of Jenkins ??? If so, I start my debug outside of Jenkins. - Original Message - From: "Chris Suich" To: jenkinsci-users@googlegroups.com Sent: Tuesday, December 16, 2014 11:25:46 AM Subject: IOException: Premature EOF when downloading ar

IOException: Premature EOF when downloading archive.zip with Ant

2014-12-16 Thread Chris Suich
Hi All, We are seeing an intermittent issue when downloading the all artifacts archive (archive.zip) from a job. We have some automation and smoke tests which is using Ant's 'get' task to download the file. The download will fail with this stacktrace from Ant: Caused by: java.io.IOException: Prem

Re: calculated labels in matrix build

2014-12-16 Thread Mark Waite
I use the Implied labels plugin to imply a label "linux" based on labels generated automatically by the platform labeler plugin. The platform labeler provides "Ubuntu" and "CentOS" and more, and I imply "linux" as a label for those machines with either "Ubuntu" or "CentOS". Would that meet your n

calculated labels in matrix build

2014-12-16 Thread Lode Leroy
hello, I would like to configure a matrix build, and control on which slaves each build version is being built. I have one axis for platform, with values "mac" and "win" I have a second axis for component, with values "client", "client2" and "server" I would like to add a label, based on the co

How to Use Different Dependencies in Each Branch?

2014-12-16 Thread John Mellor
I'm building a large number of C++ projects on a Ubuntu host using the Jenkins free-style multi-branch project type, to run a shell script to run a pbuilder chroot jail that then runs the autotools, configure, make and then build one or more .deb files in each project. Products delivered as .r

Re: [workflow plugin] is there a way to get workflow node steps to show in node history?

2014-12-16 Thread Kevin
Actually now that I look a things more closely it looks like the actual node-steps don't call RunListeners either, is it possible to have the "one shot" slave behavior in a workflow? If so how? On Monday, December 15, 2014 4:39:53 PM UTC-5, Kevin wrote: > > Title says it all, is there a way to

Re: Build stuck after test complete

2014-12-16 Thread Ryan Campbell
You need a threaddump to see what's going on. If this is a maven2 project, look at the process info on the build page. Otherwise, use jstack. On Tue, Dec 16, 2014, 5:10 AM Kiro jnr wrote: > Hi All, > > I'm working on a maven project, which is build by a Jenkins-server. > My test seems to be exec

Build stuck after test complete

2014-12-16 Thread Kiro jnr
Hi All, I'm working on a maven project, which is build by a Jenkins-server. My test seems to be executed fine but gets stuck after the test is complete. See attachment Regards Ahmed -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsub

Re: Workflow Plugin questions

2014-12-16 Thread James Nord
On 16/12/2014 10:15, Jo Shields wrote: Hi, We're looking to use Jenkins w/ workflow to replace our in-house CI system. However, there's a bunch of stuff that doesn't seem to be present in the addin (some of it might be missing features, some might be plugin compatibility, some might be me not s

Workflow Plugin questions

2014-12-16 Thread Jo Shields
Hi, We're looking to use Jenkins w/ workflow to replace our in-house CI system. However, there's a bunch of stuff that doesn't seem to be present in the addin (some of it might be missing features, some might be plugin compatibility, some might be me not seeing something in the documentation) 1

[License] join-plugin

2014-12-16 Thread Jérémy Costes
Hello, I would like to use join-plugin for jenkins but I do not found license. What license is used ? In https://github.com/jenkinsci/join-plugin some files have MIT header but not all. Thus there is a possibility that join-plugin is not under open-source license. Moreover I do not found jenki

Re: EXTERNAL: Re: Upstream/Downstream jobs configuration question

2014-12-16 Thread mpapo - Michaël Pailloncy
Thanks for your reply. Issue created : https://issues.jenkins-ci.org/browse/JENKINS-26067 This behaviour is normal since version 1.560. Michaël Le lundi 8 décembre 2014 21:51:36 UTC+1, Ng, Jeff a écrit : > > Not normal behavior; the upstream/downstream jobs should show in both > places. > >