Sigh .. I could have sworn I tried that as well and that it didn't
work either. However, I tried that approach again this after noon ..
worked just fine:
<project name="Trigger Test 3">
<triggers>
<projectTrigger project="Trigger Test 2">
<triggerStatus>Success</triggerStatus>
</projectTrigger>
<projectTrigger project="Trigger Test 2">
<triggerStatus>Failure</triggerStatus>
</projectTrigger>
<projectTrigger project="Trigger Test 2">
<triggerStatus>Exception</triggerStatus>
</projectTrigger>
</triggers>
Thanks,
Gabe
On Jul 30, 4:49 pm, PilotBob <[email protected]> wrote:
> > <triggerStatus>Success, Failure, Exception, Unknown</triggerStatus>
>
> I don't think you can do that. You have to specify 1 Status that you
> want to trigger. If you want it to happen for each status I would
> suppose that you just create multiple projectTrigger sections inside
> your triggers tag.
>
> > <trigger>
>
> Oh, BTW: The section is "triggers" not "trigger".
>
> BOb
>
> On Jul 29, 9:02 pm, GHarmonDDVA <[email protected]>
> wrote:
>
> > <project name="DBD">
>
> > <projectTrigger project="DBL">
> > <triggerStatus>Success, Failure, Exception, Unknown</triggerStatus>
> > <innerTrigger type="intervalTrigger" seconds="30"
> > buildCondition="ForceBuild"/>
>
> > </projectTrigger>
>
> > </trigger>
>
> > I do not want DBL to run until DBD is complete. But, the above
> > doesn't work. What am I doing wrong?