On one of my servers, I need to build 7 copies of a given application in succession. The first build is forced, then upon success the second copy should run, then the 3rd, and so on.
I just ran the first build this afternoon, and the second project didn't fire. Here's the configuration for #2: <triggers> <projectTrigger project="Primary Project"> <triggerStatus>Success</triggerStatus> <innerTrigger type="intervalTrigger" seconds="30" buildCondition="ForceBuild" /> </projectTrigger> </triggers> My primary project took about 40 minutes to build, could that be a factor? In the Project Trigger documentation, there's an element triggerFirstTime described as "Whether to trigger on the first time or not." What first time is it referring to? It defaults to False - does that mean that because this was my first build of Primary Project, the trigger won't execute?
