Insert all jobs on which this job actually depends (skips triggered in silent mode jobs).
If a commit should trigger both a dependency and this job, the dependency will be built first.
Use commas to separate job names. Beware of cyclic dependencies.
With this option enabled the parent builds are available as Env variables for the build
- TRIGGER_DEPENDENCY_KEYS="Space separated list of all key names of triggered parent projects"
- TRIGGER_<project name>_BUILD_NAME="The build name of triggered project"
- TRIGGER_<project name>_BUILD_NUMBER="The build number of triggered project"
- TRIGGER_<project name>_BUILD_RESULT="The build result of triggered project"
The project key name is produced from full project name using simple regular expression:
replaceAll("[^a-zA-Z0-9]+", "_").
So, all non-alphanumerical characters will be replaced by "_".