|
CruiseControl.NET : Parallel Task
This page last changed on Jan 30, 2010 by williams.
Parallel TaskRuns a set of child tasks in parallel. Each task will run at the same time as the other tasks. VersionAvailable from version 1.5 Examples<parallel> <tasks> <!-- Tasks defined here --> </tasks> </parallel> Configuration Elements
NotesThe following is an example of how to combine this task together to the Sequential Task to run multiple 'streams' of tasks in parallel: <parallel> <tasks> <sequential> <description>First parallel stream.</description> <tasks> <!-- First sequence of tasks--> </tasks> </sequential> <sequential> <description>First parallel stream.</description> <tasks> <!-- Second sequence of tasks--> </tasks> </sequential> </tasks> </parallel>
|
| Document generated by Confluence on Jan 23, 2011 08:52 |