All,
 
We have an ant build that we're running in continuum that seems to fail only 
when multi-threading.  When we turn off multi-threading (set threadcount to 1), 
it succeeds.  Is there an issue in continuum with multi-threading?  Using the 
following for parallel threads:
 
    <target name="Build All Applications">
        <parallel threadcount="4">
            <antcall target="myTarget1" />
            <antcall target="myTarget2" />
            <antcall target="myTarget3" />
        </parallel>
    </target>
 
Thanks,
Eric

Reply via email to