I am creating an integration server for the first time, and although I have two projects in my cruisecontrol config file, only the first one seems to be executing. My config file is pasted below.
<cruisecontrol>
<project name="cc-config">
<triggers>
<intervalTrigger seconds="60" />
</triggers>
<sourcecontrol type="svn">
<trunkUrl></trunkUrl>
<workingDirectory>C:\Program Files (x86)\CruiseControl.NET\server\config</workingDirectory>
</sourcecontrol>
</project>
<project name="stable_trunk">
<workingDirectoy>C:\working</workingDirectory>
<artifactDirectory>C:\artifact</artifactDirectory>
<triggers>
<intervalTrigger name="continuous" seconds="60"/>
</triggers>
<sourcecontrol type="svn">
<trunkUrl></trunkUrl>
<workingDirectory>C:\projects\security\trunk</workingDirectory>
</sourcecontrol>
<tasks>
<nant>
<executable>C:\projects\security\trunk\tools\nant-0.86-nightly-2008-08-18\bin\nant.exe</executable>
<buildFile>C:\projects\security\trunk\security.build</buildFile>
</nant>
</tasks>
<externalLinks>
<externalLink name="proj" url="projURL">
</externalLinks>
</project>
</cruisecontrol>
Can anybody help me? thanks Carter
Additional Information:
- The log file has no errors and no mention of the second project
- The web interface only shows the first project
It's as if the second project doesn't even exist.
The problem was a typo, and I missed the error in the log file. The WorkingDirectory tag was missing the last 'r'.