CruiseControl与VSS整合碰到的问题

最近想把项目的代码自动更新,编译,发布用cruisecontrol控制起来,可是碰到了与VSS整合的问题。下面是CruiseControl的VSS的配置文件
 
<bootstrappers>
    <vssbootstrapper vsspath="/ProjectX/Source Code/Workplace"
                     localdirectory="projects/${project.name}"/>
</bootstrappers>

<modificationset quietperiod="15">
<vss serverpath="//10.0.6.33/DevSourceDB/ProjectX"
     vsspath="/ProjectX/Source Code/Workplace"
     login="username,password"/>
</modificationset>


运行cruiseControl.bat,出现下列错误:
No VSS database (srcsafe.ini) found.  Set the SSDIR environment variable to the path of srcsafe.ini for your VSS database.
ss.exe process exited with error code 100
但是它确实探测出VSS有更新,请看下列信息:
3 modifications have been detected.

然后我设置了下面的环境变量
set SSDIR=//10.0.6.33/DevSourceDB/ProjectX

重新启动cruseControl.bat,运行就卡在了 bootstrapping阶段,并且能看到进程ss.exe的CPU占用率一直在50%左右,整个批处理就完全等待在bootstrapping阶段,不继续往下进行。

这个问题已经困扰了我2天了,不知道各位有没有碰到我上述的问题,有什么办法能解决的吗?

我的操作系统是Windows XP Professinal, CruiseControl的版本是2.7

你可能感兴趣的:(windows,xml,XP,dos,vss)