RE: jenkins conditional matrix - combination filter does not work

2014-12-24 Thread Ng, Jeff
Just guessing here, but in your “exclusions” combo filter below, it seems like you should be using instead of || separating the two conditions. Also, not sure if it makes a difference when parsing, but typically there are no spaces around the ==. So, did you already try this: !(platform==b

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

2014-12-08 Thread Ng, Jeff
Not normal behavior; the upstream/downstream jobs should show in both places. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of mpapo - Michaël Pailloncy Sent: Monday, December 08, 2014 3:18 AM To: jenkinsci-users@googlegroups.com Subject: EXTERNAL:

RE: EXTERNAL: Re: how to configure paths for Publish JUnit test result report plugin

2014-11-26 Thread Ng, Jeff
Here’s what I do for JUnit and Emma reports: 1. In the job configuration, I have a build step (execute shell) prior to executing the build, that creates a directory in the WORKSPACE for each report type (e.g. mkdir –p “${WORKSPACE}/junit-test-results”). 2. In the build step where I execute my

RE: EXTERNAL: How can i pass parameters from the Upstream to Downstream ?

2014-08-14 Thread Ng, Jeff
Subject: How do i pass a build number to a downstream job for jobs that are part of a Build

RE: How do i pass a build number to a downstream job for jobs that are part of a Build Pipeline

2014-07-31 Thread Ng, Jeff
I use the ParameterizedTriggerPluginhttps://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Trigger+Plugin to pass various properties, including build name/number, to downstream jobs. In the upstream job, I have a build step to write the properties to a properties file in the workspace.

RE: EXTERNAL: Re: Base ClearCase failed. exit code=1

2014-03-12 Thread Ng, Jeff
Also, .vws is an extension to the view storage directory name and is not typically part of the view tag name. Your view tag should be named cnorton_view. -Original Message- From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Daniel Beck Sent:

RE: ClearCase Dynamic View Setup

2014-02-03 Thread Ng, Jeff
To execute a command in the context of the dynamic view, you must use: /opt/rational/clearcase/bin/cleartool setview –exec ‘your-commands-here’ ${CLEARCASE_VIEWTAG} -Jeff Ng From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Silver$$ Sent: Monday,

RE: EXTERNAL: Clearcase integration with Jenkins to schedule jobs

2014-01-14 Thread Ng, Jeff
I have one of my UCM projects setup to do exactly what you are requesting. Whenever a dev completes a delivery to the project integration stream, a postop deliver_complete trigger kicks off a build job using a URL (trigger builds remotely). Here's what you'll need: 1. Configure your Jenkins

Best plugin to use for pre build-name-setter build step

2013-09-19 Thread Ng, Jeff
I have been using the build-name-setter plugin (v1.3) for over a year now using the PROPFILE macro. The only issue I've had with it is that it fails the build if the PROPFILE is missing from the workspace (JENKINS-13509). Most of the time, the file exists because I have a post-build task that

RE: EXTERNAL: ClearTool on shell

2013-08-22 Thread Ng, Jeff
If your intent is to execute a command within the context of a view, you need to use the -exec option to the setview subcommand. Example: cleartool setview -exec 'run your command here' someExistingView If you want to use the view that you defined in the View tag field, you can use the

RE: EXTERNAL: Re: How to Install ClearCase plugins without Internet connection

2013-04-17 Thread Ng, Jeff
The .zip is the .hpi, so simply rename the .zip to .hpi. For example: clearcase-1.3.7.zip should be renamed to clearcase-1.3.7.hpi -Jeff Ng From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Anna Sent: Wednesday, April 17, 2013 12:11 PM To:

RE: EXTERNAL: Any way to schedule a one time build?

2013-03-22 Thread Ng, Jeff
Here's one way: In the Build Triggers section, select Trigger builds remotely. You can name the Authentication Token something like ONE_TIME_BUILD. Jenkins will display a URL that you can call to trigger the build. Then, you can trigger the build in many different ways (cron job, script,

RE: EXTERNAL: Build name setting

2013-03-20 Thread Ng, Jeff
in the java property file which Jenkins can recognize. How to handle this writing of property file? Can you please explain? Thanks, Umesh On Thu, Mar 21, 2013 at 12:00 AM, Ng, Jeff jeff...@lmco.commailto:jeff...@lmco.com wrote: Here's how I do it using the build-name-setter and Post_build_task plugins

RE: EXTERNAL: Post-build environment variables

2013-03-15 Thread Ng, Jeff
Did you try ${PARAM_A} From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Duong Dang Chien Sent: Friday, March 15, 2013 12:29 AM To: jenkinsci-users@googlegroups.com Subject: EXTERNAL: Post-build environment variables Hi all, I have a Jenkins

RE: EXTERNAL: Re: Base Clearcase issues

2013-02-22 Thread Ng, Jeff
Check the host that the job is executing on to ensure it is in the same ClearCase region that the view is tagged in. Also, is GURt2645 the correct view tag name for your dynamic build view? -Jeff Ng -Original Message- From: jenkinsci-users@googlegroups.com

RE: EXTERNAL: Specifying Branches to Poll for ClearCase Plugin

2012-11-06 Thread Ng, Jeff
If you are asking about the ability to poll multiple branches, the answer is Yes. In the “Branch(es)” field, you can specify multiple branches by separating them by a whitespace. For example, if you want to poll both a specific integration branch and the “/main” branch, your field value would