Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3962992
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T03:09:44+00:00 2026-05-20T03:09:44+00:00

I have multiple projects within CruiseControl.NET (version 1.4.4) that I have assigned to a

  • 0

I have multiple projects within CruiseControl.NET (version 1.4.4) that I have assigned to a single Queue…

   <project name="Build - A" queue="Q1">
   ...
   </project>
   <project name="Build - B" queue="Q1">
   ...
   </project>
   <project name="Build - C" queue="Q1">
   ...
   </project>
   <project name="Build - D" queue="Q1">
   ...
   </project>

All the projects are non-triggered projects – I (along with every other developer in the division) use CCTray to manually kick off each project. The problem is: If, while project A is running, another user uses Force Build to start another project, it runs concurrently with project A. Even though they are in the same queue. I would have thought that requests within the same queue would be… I don’t know, queued and not executed at the same time. I am using the default queue implementation of “UseFirst”.

Any idea how to make the projects within the queue behave a little more queue-like? I’d like to add the projects to a timed scheduler, but without any confidence that the projects will not all try to run concurrently and kill my woefully underpowered build machine, I dare not try it.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T03:09:45+00:00Added an answer on May 20, 2026 at 3:09 am

    Odd. I’m using the same configuration you mentioned and its queuing the force build requests.
    Try updating ccnet version.

    Following is (some of) my ccnet config style (its using preprocessor):

    <cruisecontrol
        xmlns:cb="urn:ccnet.config.builder" xmlns="http://thoughtworks.org/ccnet/1/5">
    
      <!-- Queue to make sure one build at a time - to avoid same folder SVN locking issues-->
      <queue name="Q_Synchronizer" duplicates="UseFirst" />
    
      <!-- ************ Common defs (CC.net pre-processor tags)*********-->
      <cb:define local_svn_root="C:\svn"/>
      <cb:define remote_svn_root="http://SVN_SERVER:8888/svn/"/>
      <cb:define svn_exe="C:\Program Files\Subversion\bin\svn.exe"/>
      <cb:define svn_user="SVNUSER" svn_pw="PPPPPWWWW"/>
      <cb:define server_url="http://CCNET_SERVER/ccnet"/>
      <cb:define build_timeout="900"/>
    
      <cb:define name="msbuild_task">
        <msbuild>
          <executable>C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe</executable>
          <workingDirectory>$(local_svn_root)$(project_solution_path)</workingDirectory>
          <projectFile>$(project_solution_file)</projectFile>
          <buildArgs>/p:Configuration=$(project_solution_configuration) /p:VCBuildAdditionalOptions="/useenv" /v:diag /t:rebuild</buildArgs>
          <timeout>$(build_timeout)</timeout>
        </msbuild>
      </cb:define>
    
      <cb:define name="svn_dependency">
        <svn>
          <executable>$(svn_exe)</executable>
          <workingDirectory>$(local_svn_root)$(internal_svn_path)</workingDirectory>
          <trunkUrl>$(remote_svn_root)$(internal_svn_path)</trunkUrl>
          <username>$(svn_user)</username>
          <password>$(svn_pw)</password>
          <timeout units="minutes">30</timeout>
        </svn>
    
      </cb:define>
    
       <cb:define name="project_template" >
        <project name="$(project_name)" queue="Q_Synchronizer" queuePriority="$(queuePriority)">
          <workingDirectory>$(local_svn_root)$(project_solution_path)</workingDirectory>
          <webURL>$(server_url)/server/local/project/$(project_name)/ViewLatestBuildReport.aspx</webURL>
          <triggers>
            <intervalTrigger seconds="30" name="continuous" buildCondition="IfModificationExists"/>
          </triggers>
          <sourcecontrol type="multi">
            <sourceControls>
              <cb:svn_dependency internal_svn_path="$(project_internal_svn_path)"/>
    
              <cb:additional_svn_dependencies/>
    
            </sourceControls>
          </sourcecontrol>
          <tasks>
            <cb:msbuild_tasks/>
          </tasks>
          <publishers>
            <xmllogger logDir="$(local_svn_root)$(project_solution_path)\BuildLogs" />        
          </publishers>
        </project>
      </cb:define>
    
       <!-- ************* Projects definition ************-->
      <cb:project_template
         project_name="Proj A"
         project_internal_svn_path="/code/"
         project_solution_path="/code/Proj A"
         project_solution_file="Proj A.sln"
         queuePriority="1"
         >
        <cb:define name="msbuild_tasks">
          <cb:msbuild_task project_solution_configuration="Debug"/>
          <cb:msbuild_task project_solution_configuration="Release"/>
        </cb:define>
        <cb:define name="additional_svn_dependencies">
          <cb:svn_dependency internal_svn_path="/bin"/>
        </cb:define>
    
      </cb:project_template>
    
      <cb:project_template
         project_name="Proj B"
         project_internal_svn_path="/code/"
         project_solution_path="/code/Proj B"
         project_solution_file="Proj B.sln"
         queuePriority="1"
         >
        <cb:define name="msbuild_tasks">
          <cb:msbuild_task project_solution_configuration="Debug"/>
          <cb:msbuild_task project_solution_configuration="Release"/>
        </cb:define>
        <cb:define name="additional_svn_dependencies">
          <cb:svn_dependency internal_svn_path="/third-party"/>
        </cb:define>
      </cb:project_template>
    
    
    </cruisecontrol>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Many times I have seen Visual Studio solutions which have multiple projects that share
We have multiple vb projects.We want to put error handlers in all functions, and
I have a large Java app that is split up into multiple projects. Each
If I create a utility project and multiple dynamic web projects within Eclipse and
I have a project structure that looks like the following: [Solution Name] doc (documentation)
I have a Solution with multiple projects. One project is my DataAccess project with
I have multiple projects in a couple of different workspaces. However, it seems like
Most of our Eclipse projects have multiple source folders, for example: src/main/java src/test/java When
I have a solution with multiple projects and we need to do some serious
I have a large source repository split across multiple projects. I would like to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.