vote up 0 vote down star
2

I am working with CruiseControl.Net and am trying to take the dry approach as illustrated in article http://www.zorched.net/2009/01/30/dry-your-cruisecontrolnet-configuration/ I have a simple ccnet.config and a simple projectfile Test-project.xml. The configuration valuation tool tells me that “Duplicate Node Detected”. Any clues/Hints would be great.

Ccnet.config

<cruisecontrol  xmlns:cb="urn:ccnet.config.builder">
  <!-- Standard Inits -->
  <cb:define name="StandardInit-block">
    <webURL>http://localhost/ccnet-dashboard/?_action_ViewProjectReport=true&amp;server=local&amp;project=Introvert</webURL>
    <artifactDirectory>D:\CC\$(ProjName)\artifact\</artifactDirectory>
    <modificationDelaySeconds>120</modificationDelaySeconds>
  </cb:define>

  <!-- Trigger run weekly -->
  <!-- Vars $(TriggerTime), $(ProjName) -->
  <cb:define name="WeeklyBuild-block">
    <triggers>
      <scheduleTrigger time="$(TriggerTime)" buildCondition="ForceBuild" name="Nightly build at $(TriggerTime) for $(ProjName)">
        <weekDays>
          <weekDay>Monday</weekDay>
          <weekDay>Tuesday</weekDay>
          <weekDay>Wednesday</weekDay>
          <weekDay>Thursday</weekDay>
          <weekDay>Friday</weekDay>
        </weekDays>
      </scheduleTrigger>
    </triggers>
  </cb:define>

  <cb:include href="Test-project.xml" xmlns:cb="urn:ccnet.config.builder"/>
</cruisecontrol>

Test-project.xml

<project name="Test" xmlns:cb="urn:ccnet.config.builder">

    <cb:scope
      TriggerTime="2:30"
      ProjName="Test"
      ProjStarPath="" >

      <!-- Standard block -->
      <cb:StandardInit-block/>

      <!-- Trigger block -->
      <cb:WeeklyBuild-block/>

      <tasks></tasks>
      <publishers></publishers>

    </cb:scope>
  </project>

flag

48% accept rate
could you post the code of the other files please? What is in <cb:StandardInit-block/> and <cb:WeeklyBuild-block/> might be of use. Also, i assume this code you have posted is included in another file, could we see that too? – Pondidum May 19 at 14:18
Both files are included, but the formatting of the first file is less than desirable. Perhaps you could edit it so it is formatted. – Nick DeVore May 19 at 14:31
I'm trying to figure out how to format XML so ti looks ok, can hints? I tried enclosing it all in <code><prep> but it still seems to treat it as markup not code. – unknown (yahoo) May 19 at 14:34
just select all the xml and hit the button that has some binary on it in the toolbar – Pondidum May 19 at 14:38
Thanks! Much easier! – unknown (yahoo) May 19 at 14:44

3 Answers

vote up 0 vote down check

ccnet.config:

<cruisecontrol xmlns:cb="urn:ccnet.config.builder"> 

    <!-- Standard Inits --> 
    <cb:define name="StandardInit-block">

    	<!--<webURL>http://localhost/ccnet-dashboard/?_action_ViewProjectReport=true&server=local&project=Introvert</webURL>-->
    	<artifactDirectory>D:\CC\$(ProjName)\artifact\</artifactDirectory> 
    	<modificationDelaySeconds>120</modificationDelaySeconds> 

    </cb:define>

    <!-- Trigger run weekly --> 

    <!-- Vars $(TriggerTime), $(ProjName) --> 
    <cb:define name="WeeklyBuild-block"> 

    	<triggers> 
    		<scheduleTrigger time="$(TriggerTime)" buildCondition="ForceBuild" name="Nightly build at $(TriggerTime) for $(ProjName)"> 
    			<weekDays> 
    				<weekDay>Monday</weekDay> 
    				<weekDay>Tuesday</weekDay> 
    				<weekDay>Wednesday</weekDay> 
    				<weekDay>Thursday</weekDay> 
    				<weekDay>Friday</weekDay> 
    			</weekDays>
    		</scheduleTrigger> 
    	</triggers> 

    </cb:define>

    <cb:include href="Test-project.xml" /> 

</cruisecontrol>

Test-project.xml:

<project name="Test" xmlns:cb="urn:ccnet.config.builder">

    <cb:scope
        TriggerTime="2:30"
        ProjName="Test"
        ProjStarPath="" >

    <!-- Standard block -->
    <cb:StandardInit-block/>

    <!-- Trigger block -->
    <cb:WeeklyBuild-block/>

    <tasks/>
    <publishers/>

    </cb:scope>
</project>

Having just run this lot through cruisecontrol on my box, the only problem i get is the URL in the ccnet.config file. remove that and the code i pasted above this text works fine.

link|flag
Andy, I got invald xml when I removed xmlns:cb="urn:ccnet.config.builder". <tag></tag> is the same as <tag/> in xml. What is the name of the start tag you are refering to? Look at the source again. It is much more readable. – unknown (yahoo) May 19 at 15:11
I delete the Web line that your mentioned, but still no joy. I am running this on my workstation. My ccnet.config file lives in C:\Program Files\CruiseControl.NET\server. My test-project.xml lives in the same directory. When I start CC it says… No loaded type is marked up with Reflectory Type attribute that matches the xml node (#text). Is it possible that it can not find the xml file? – unknown (yahoo) May 19 at 18:34
Are you using the latest version of CruiseControl? i believe the <cb:scope> tag was a fairly recent addition. – Pondidum May 19 at 21:18
Thanks Andy, that was it, My CruiseControl was not the latest. – unknown (yahoo) May 26 at 14:15
Glad you were able to solve it :) – Pondidum May 26 at 15:27
vote up 1 vote down

I also ran into this problem this week as I also decided to use this DRY approach for CruiseControl.

After starting the criusecontrol service (and it then quickly failing) I looked in the log file (C:\CruiseControl.NET\server\ccnet.log for me...) and I saw something like:

ThoughtWorks.CruiseControl.Core.Config.ConfigurationException: Duplicate node detected: ... (rest of the node that's causing the issue)

That at least gave me an idea of what it was having a problem with.

link|flag
Houndey is right, if you look in your logs, it will tell you what the duplicate node is... – Alex May 21 at 19:18
vote up 0 vote down

Not sure if it was an oversight in posting your xml files here, but you don't have an ending </project> in Test-project.xml.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.