Re: Jenkins ScriptTrigger plugin stopped working by default

2013-04-14 Thread Grégory Boissinot
Please raise a new issue for the script-trigger component On Sat, Apr 13, 2013 at 10:17 AM, EldadAK eldad.as...@gmail.com wrote: I have a strange behavior by my Jenkins and the ScriptTriggerhttps://wiki.jenkins-ci.org/display/JENKINS/ScriptTrigger+Plugin plugin. I have Jenkins 1.510 with

Re: Jenkins ScriptTrigger plugin stopped working by default

2013-04-14 Thread Grégory Boissinot
I don't think so. On Sun, Apr 14, 2013 at 11:54 AM, Eldad A.K. eldad.as...@gmail.com wrote: Isn't it the same as: https://issues.jenkins-ci.org/browse/JENKINS-17566 ? Eldad On Sun, Apr 14, 2013 at 12:03 PM, Grégory Boissinot gregory.boissi...@gmail.com wrote: Please raise a new issue

Re: SharedObjects Plugin

2013-04-14 Thread Grégory Boissinot
The option 'A URL to a properties file' is restricted to HTTP. From shared-objects 0.44, I renamed to 'An Http URL' and I added a 'public file path to a properties file' option. On Fri, Mar 22, 2013 at 9:54 AM, meng.zhaoxi...@zte.com.cn wrote: Hi everybody, Now I want to set

Re: How to add attachments to the build results?

2013-03-11 Thread Grégory Boissinot
Jenkins enables you to archive some build artifacts. All archived artifacts will be stored in JENKINS_HOME attached to the current build. There is also the ArtifactDeployer plugin for deploying some build outputs to remote locations and make a link to the couple build/deployed artifacts. Does it

Re: Export of cppcheck charts

2012-12-22 Thread Grégory Boissinot
You are able to gather Cppcheck result information for a specific buid with the following URL http://jenkins_server/job/job_name/build_number/cppcheckResult/api/xml Getting Cppcheck statistic for all builds seems to be no sense. Maybe you want to access the cppcheck result from the last budild,

Re: How to publish artifacts which will be still available via links on Jenkins?

2012-12-22 Thread Grégory Boissinot
ArtifactDeployer Jenkins plugin (https://wiki.jenkins-ci.org/display/JENKINS/ArtifactDeployer+Plugin) should resolve your issue. On Thu, Dec 13, 2012 at 7:39 AM, zakyn zakvladi...@gmail.com wrote: Hello, I have this situation. I have limited space on VM so I have to move the

Re: EnvInject Access to Manager

2012-12-21 Thread Grégory Boissinot
From EnvInject 1.75, you are able to use currentJob and currentBuild variables in order to access respectively to Job and Run instances. On Wed, Dec 19, 2012 at 3:58 PM, Matt Felzani mfelz...@gmail.com wrote: Hi, I'm trying to use the EnvInject plugin. Specifically in the Prepare an

Re: environment variables for 'Execute shell' steps in Jenkins jobs

2012-10-28 Thread Grégory Boissinot
If you want to add environment variables to the Tomcat process, please refer to the Tomcat documentation (there are several ways to achieve it). If you want Jenkins to control environment variables, it is natively available in Jenkins. In addition, EnvInject Jenkins plugin is able to set

Re: how to handle C# project dependencies

2012-10-07 Thread Grégory Boissinot
MSBuild Plugin is only a wizard in order to help to configure the MSBuild tool. Your issue relies on the MSBuild tool. Try to capture the generated command line generated by Jenkins (with all arguments) and launch this command in shell for trying to debug it. However according the log,

Re: Build a Project based on a criteria

2012-09-23 Thread Grégory Boissinot
An other approach could be to configure these other projects to schedule a new build if the response from a URL call has changed from the previous response. This behavior enables you to poll URLs with a 2-hour period. URLTrigger Jenkins plugin can achieve this feature. On Fri, Sep 7, 2012 at

Re: Scheduled job vs manually started job

2012-06-29 Thread Grégory Boissinot
Check the BUILD_CAUSE environment variable value from your program. By default, the values can be: - MANUALTRIGGER - SCMTRIGGER - MANUALTRIGGER UPSTREAMTRIGGER Then, plugins (such as XTrigger plugins) can provide additional cause values. On Fri, Jun 29, 2012 at 10:19 AM, benjamin.a.lau

Re: Set environment variable via groovy

2012-06-27 Thread Grégory Boissinot
I suggest using EnvInject Jenkins plugin which provide some simple Groovy capabilities to set environment variables. On Wed, Jun 27, 2012 at 6:44 PM, wildejenkins wildejenk...@gmail.comwrote: Hi, I’ve been attempting to set an environment variable using groovy. So far the code I have is:

Re: Perl XML::Simple settings for configuring jobs

2012-06-27 Thread Grégory Boissinot
Just a remark: Maybe Perl is not the best solution to do that with Jenkins There are lots of examples with Java/Groovy in the Wiki and in the web. Maybe a quick alternative to solve your issue. On Wed, Jun 27, 2012 at 9:44 PM, Jim Searle jimsea...@gmail.com wrote: I have perl scripts that

Re: EnvInject 1.52 exceptions

2012-05-17 Thread Grégory Boissinot
EnvInject 1.53 should fix these issues. On Wed, May 16, 2012 at 4:35 PM, John Vacz mailing.list.collect...@googlemail.com wrote: Hello, after upgrade to Jenkins 1.463 and EnvInject 1.52, I can see large amount of exceptions when Jenkins starts up (see attachment). It seems to me like the

Re: EnvInject does not pick up variables injected by ToolEnv plugin

2012-04-27 Thread Grégory Boissinot
At the moment, ToolEnv is not aware of the EnvInject plugin. Technically ToolEnv doesn't export its new environment variables by an EnvironmentContribution action. Therefore, EnvInject cannot capture environment variables populated by the ToolEnv plugin. However, you can install the SharedObjects

Re: EnvInject does not pick up variables injected by ToolEnv plugin

2012-04-27 Thread Grégory Boissinot
. Done As someone has suggested before, it would be very nice if ToolEnv and EnvInject can be merged together. Am 27.04.2012 08:34, schrieb Grégory Boissinot: At the moment, ToolEnv is not aware of the EnvInject plugin. Technically ToolEnv doesn't export its new environment variables

Re: EnvInject global vs. per job behavior

2012-04-26 Thread Grégory Boissinot
On Tue, Apr 24, 2012 at 3:10 AM, AnthonyJ anthony.jeff...@cox.net wrote: If one job is enabled for EnvInject, should it affect all jobs globally? no I see the message below for jobs which do not have it turned on.. [EnvInject] - Preparing an environment for the build. the current build

Re: Artifact Deployment

2012-04-14 Thread Grégory Boissinot
For the first case, there is a bug on the artifactdeployer plugin : promoted variables are not interpreted. Please raise a bug report for the artifactdeployer component. For the second case, you have to prefile with file:// because a URI is expected by the artifactdeployer plugin. On Sat, Apr 7,

Re: EnvInject Usage

2012-04-05 Thread Grégory Boissinot
EnvInject plugin enables you to inject only variables for a build. It is not aimed at propagating environment variables to downstream jobs. Therefore, EnvInject plugin can read files (properties files) and it doesn't create files. If you want to share elements, you have to do yourself. On Thu,

Re: EnvInject Usage

2012-04-05 Thread Grégory Boissinot
variables used for a build. You can also get them through an URL. On Apr 5, 12:14 pm, Grégory Boissinot gregory.boissi...@gmail.com wrote: EnvInject plugin enables you to inject only variables for a build. It is not aimed at propagating environment variables to downstream jobs. Therefore

Re: EnvInject Usage

2012-04-05 Thread Grégory Boissinot
What is the issue? On Thu, Apr 5, 2012 at 5:37 PM, hsn_ kolar.ra...@gmail.com wrote: anybody made envinject to work on jboss 7.1?

Re: ChangeLog parser without SCM

2012-04-01 Thread Grégory Boissinot
At the moment, there is no available solution without SCM. However, you can look at the XTrigger plugin providing a change log. What is exactly your use case? On Sat, Mar 31, 2012 at 1:26 PM, bl0ck3r martin.danjo...@gmail.com wrote: Is it possible to have a ChangeLog parser without developing

Re: URLTrigger Plugins does not trigger

2012-04-01 Thread Grégory Boissinot
@nns URL Change Trigger plugin is deprecated. Please switch to URL Trigger. @Alexender Please test with latest version. If the problem persists, raise a bug report. On Thu, Jan 19, 2012 at 10:51 AM, nns smyau...@gmail.com wrote: The same issue for me - looks like it is not working. From

Re: Is it possible to distinguish between a job triggered by an SCM trigger/periodic trigger/etc... based on a system property set by Jenkins?

2012-03-28 Thread Grégory Boissinot
Documentation added On Wed, Mar 28, 2012 at 7:19 PM, domi d...@fortysix.ch wrote: Actually the the env-inject plugin does this - i'm not sure why this is not documented Its implemented like this: - BUILD_CAUSE contains a coma separated list of all causes - each active cause gets its own

Re: EnvInject: injecting environment variables from URL

2012-03-27 Thread Grégory Boissinot
pages, but the objects are not saved. On 25.03.2012 16:02, Grégory Boissinot wrote: It should be fix with SharedObjects plugin 0.20. On Fri, Mar 23, 2012 at 7:13 AM, John Vacz mailing.list.collect...@googlemail.com wrote: I have form submission problem on the shared objects configure page

Re: EnvInject: injecting environment variables from URL

2012-03-25 Thread Grégory Boissinot
dealing with the drop down button gadget. On 18.03.2012 22:51, Grégory Boissinot wrote: Thanks for testing EnvInject plugin. EnvInject is aimed at managing environment variables. For your need, you can use the Shared Objects plugin. It's a complement to the EnvInject plugin. It enables you

Re: EnvInject: injecting environment variables from URL

2012-03-18 Thread Grégory Boissinot
Thanks for testing EnvInject plugin. EnvInject is aimed at managing environment variables. For your need, you can use the Shared Objects plugin. It's a complement to the EnvInject plugin. It enables you to share objects in your environment (such as in your case a properties files through an URL)

Re: xUnit: Description of xml-file

2012-03-18 Thread Grégory Boissinot
What kind of documentation do you expect? The entry point is the wiki: https://wiki.jenkins-ci.org/display/JENKINS/xunit+Plugin On Thu, Mar 15, 2012 at 7:58 PM, Benedikt Rothe benedikt.ro...@googlemail.com wrote: I'd like to use xUnit with jenkins and write custom xslt-files to generate the

Re: FSTrigger plugin issues

2012-02-22 Thread Grégory Boissinot
Could you raise a bug report for the envinject component and attach your job configuration file (config.xml)? On Wed, Feb 22, 2012 at 9:37 PM, Brad bhugg...@gmail.com wrote: I am having trouble getting the FSTrigger plugin to work. I am getting the following error: [FSTrigger] - Monitor

Re: xUnit - failed test did not set yellow ball

2012-02-22 Thread Grégory Boissinot
Not issue. Closed. On Mon, Feb 20, 2012 at 6:07 PM, Thomas Fürer tfuerer.java...@gmail.comwrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 please vote for https://issues.jenkins-ci.org/browse/JENKINS-12616 I think you are running in the same issue as I do. thomas Am 20.02.2012