I have a requirement to not to trigger the build when the other project is in progress:
<cb:config-template xmlns:cb="urn:ccnet.config.builder">
<project name="prj1" queue="Q1" queuePriority="1">
</project>
<project name="prj2" queue="Q1" queuePriority="2">
</project>
<project name="prj3" queue="Q1" queuePriority="3">
</project>
<project name="prj4" queue="Q1" queuePriority="4">
</project>
</cb:config-template>
Consider build for prj4
is inProgress
, when I force the build for the prj1
. It shouldn't proceed. Need to show popup and ask for confirmation. Can anyone know how to approach on this?
I am building scripts using nant
commands. Thanks.