Delphi的连续集成系统

Delphi的连续集成系统,第1张

概述有什么CI-Systems的Delphi像Hudson for Java? Hudson有任何Delphi集成吗? 我们使用Hudson :),它工作正常与Delphi。 这里是我的一个项目的完整设置: <?xml version='1.0' encoding='UTF-8'?><project> <actions/> <description></description> <kee 有什么CI-Systems的Delphi像Hudson for Java?
Hudson有任何Delphi集成吗?解决方法 我们使用Hudson :),它工作正常与Delphi。

这里是我的一个项目的完整设置:

<?xml version='1.0' enCoding='UTF-8'?><project>  <actions/>  <description></description>  <keepDependencIEs>false</keepDependencIEs>  <propertIEs/>  <scm >    <cvsroot>:sspi:cvsonly:foo@bar:/baz</cvsroot>    <module>SIP</module>    <canUseUpdate>false</canUseUpdate>    <flatten>true</flatten>    <isTag>false</isTag>    <excludedRegions></excludedRegions>  </scm>  <canRoam>true</canRoam>  <Disabled>false</Disabled>  <triggers />  <builders>    <hudson.tasks.Batchfile>      <command>&quot;C:\Program files\Nant\bin\nant&quot; -buildfile:etc\sip.build build-d7 test</command>    </hudson.tasks.Batchfile>  </builders>  <publishers>    <hudson.tasks.BuildTrigger>      <childProjects>quux,foozle,wibble</childProjects>      <threshold>        <name>SUCCESS</name>        <ordinal>0</ordinal>        <color>BLUE</color>      </threshold>    </hudson.tasks.BuildTrigger>  </publishers>  <builDWrappers/></project>

sip.build的delphi-7目标构建项目的测试套件(DUnit的TextTestRunner),所以作业的输出只是失败/错误测试的计数感谢:

var  R: TTestResult;begin  R := TextTestRunner.RunRegisteredTests;  ExitCode := R.ErrorCount + R.FailureCount;end;
总结

以上是内存溢出为你收集整理的Delphi的连续集成系统全部内容,希望文章能够帮你解决Delphi的连续集成系统所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1281827.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-09
下一篇 2022-06-09

发表评论

登录后才能评论

评论列表(0条)

保存