Re: How do i pass a build number from an upstream job to a downstream job using the build pipeline plugin

2015-08-03 Thread mr
If I do understand your question correctly, then you could use a build call within the build pipeline like this one: build(downstreamJobName, VERSION: '1.0.0.2 ) Provided that the job with the name 'downstreamJobName' accepts a parameter with the name

How do i pass a build number from an upstream job to a downstream job using the build pipeline plugin

2015-08-01 Thread Khai Do
How about save environment variable out to file then use env inject plugin to load it in downstream jenvironment -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe from this group and stop receiving emails from it, send an email to

How do i pass a build number from an upstream job to a downstream job using the build pipeline plugin

2015-07-31 Thread Eric Wood
I have an upstream job that uses the version number plugin to set a build environment variable to something like: 1.0.0.2 I use the Build Pipeline plugin to trigger a downstream job manually and I want to pass this value down the pipeline to use.  I cannot use the parameterized build trigger