cruisecontrol.net - CCNet queue not working -


i have defined ccnet queue included in several ci projects (about 10).

the queue fills , can see pending jobs in cctray , in dashboard, correctly ordered based on priorities have defined. however, queue emptied first job completes, , dashboard activity of jobs "pending" returns "sleeping".

i not have triggers between projects - trigger using in project starting build if source repository updated.

<queue name="myq" duplicates="applyforcebuildsreplace" />  <cb:scope projectname="my project">        <project category="myprojects" name="$(projectname)" queue="myq" queuepriority="1" weburl="$(weburl)" workingdirectory="c:\my_project\work" artifactdirectory="c:\my_project\log" >          <triggers>           <intervaltrigger name="continuous integration" seconds="120" buildcondition="ifmodificationexists"/>         </triggers>          <sourcecontrol type="filtered">             <sourcecontrolprovider type="vsts">                 <server>$(teamprojectcollectionurl)</server>                 <project>$/myproject</project>                 <workingdirectory>c:\my_project_work_tfs</workingdirectory>                 <workspace>my_project_work_tfs</workspace>                 <deleteworkspace>false</deleteworkspace>             </sourcecontrolprovider>         </sourcecontrol>          <tasks>           <exec>             [invokes nant...]           </exec>         </tasks>        </project>     </cb:scope>  

three of projects have priority of 1 , others have priority 2.

i using ccnet 1.8.3.0.

can help? thanks.

from question read expect projects build after first 1 triggered, yes? in case need include project trigger every project gets triggered dependency gets triggered.


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -