I want to use project results to generate parameters that can be passed to multiple child projects using something like Parameterized Trigger Plugin .
In particular, I want the parent project to be a kind of resource manager for my testing servers. After creating a project, there are many complex test suites to run, and only for a few test servers. Instead of hard code on which test servers I want to run each test, I want the project resource manager:
- Determine which servers are available / running.
- Select the subsets of available servers for each test.
- Transfer sets of IP addresses to multiple projects that will run in parallel.
I know that perhaps it is possible if the resource manager writes these parameters to the file system and sets up child projects to read from these files, but I am sure that this is the type of problem that the plugin has already resolved. I just don’t see how the trigger plugin can extract arbitrary parameters from the native output of the assembly.
source
share