Hi,
I have project used to build some target with parameters
<project name="A" category="CategoryA" queue="Q1" queuePriority="1" >
<!-- Project definition -->
<parameters>
<selectParameter name="Platform">
<allowedValues>
<value name="PlatformA">PlatformA</value>
<value name="PlatformB">PlatformB</value>
</allowedValues>
<selectParameter >
<parameters>
</project>
it works fine when I want to trigger this manually (from
webdashboard) , I have a popup windows allowing me to choose wich
platform i want to build.
The problem is I want to create another project to be be able to build
all platform , something like that
<project name="BuildALL" category="CategoryB" queue="Q2"
queuePriority="1" >
<tasks>
<sequential>
<nullTask />
<forcebuild>
<project>ProjectA</project>
<parameters>
<namedValue name="Platform"
value="PlatformA" />
</parameters>
<integrationStatus>Success</integrationStatus>
</forcebuild>
<forcebuild>
<project>ProjectA</project>
<parameters>
<namedValue name="Platform"
value="Platform />
</parameters>
<integrationStatus>Success</integrationStatus>
</forcebuild>
</sequential>
</tasks>
</project>
but in this case it seems that platformB is never build, is there a
way to do this.
thanks.