惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
罗磊的独立博客
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
V
V2EX
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
量子位
MyScale Blog
MyScale Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
B
Blog

博客园 - BB_Coder

rsync --include-from --exclude-from的理解 使用Common.Logging+log4net规范日志管理 我也表达式一回 sqlserver2005系统表、视图研究2 三种SQL分页方法性能分析 SQLServer2005新分页方法 关于SQLServer的小技巧 应该多了解一些工具 正则表达式网上学习资料 用最简单的方法实现Ajax - BB_Coder - 博客园 关于onMouseOver出现提示文字的多行处理办法 验证码缓存问题完美解决方案 由于登录失败而无法启动服务的解决方案 邮件发送不成功的问题 最近项目是跟框架有关的两个问题 自己写的一些小函数.用正则表达式实现一些小功能~ 数据库还原后连接不上 未与信任 SQL Server 连接相关联 IIS配置问题:出现了Failed to access IIS metabase的错误
CruiseControl 安装配置
BB_Coder · 2017-12-05 · via 博客园 - BB_Coder

https://sourceforge.net/projects/ccnet/files/CruiseControl.NET%20Releases/

一个完整的配置文件(VS2010的解决方案)其他版本的项目注意修改执行文件路径。

<cruisecontrol xmlns:cb="urn:ccnet.config.builder">
  <project name="my1.ecvv.com" description="ecvv :my1.ecvv.com">
    <webURL>http://www.ecvv.com/</webURL>
    <workingDirectory>D:\WebView\my1</workingDirectory>
    <triggers>
      <intervalTrigger name="continuous" seconds="180" buildCondition="ForceBuild" initialSeconds="50"/>
    </triggers>
    <sourcecontrol type="external">
      <executable>TortoiseProc.exe</executable>
      <args> /command:update /path:"D:\WebView\my1\" /closeonend:1</args>
      <autoGetSource>false</autoGetSource>
      <labelOnSuccess>false</labelOnSuccess>
    </sourcecontrol>
    <publishers>
      <devenv>
        <solutionfile>my1.sln</solutionfile>
        <configuration>Debug</configuration>
        <buildtype>Build</buildtype>
        <executable>C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.com</executable>
      </devenv>
      <xmllogger />
      <artifactcleanup cleanUpMethod="KeepLastXBuilds" cleanUpValue="50" />
      <email mailport="25" includeDetails="TRUE" mailhostUsername="my_ccnet@my.com" mailhostPassword="Myc521" useSSL="FALSE">
        <from>my_ccnet@my.com</from>
        <mailhost>smtp.exmail.qq.com</mailhost>
        <users>
          <user name="my1" group="buildmaster" address="my1@my.com" />
          <user name="my2" group="developers" address="my2@my.com" />
        </users>
        <groups>
          <group name="developers">
            <notifications>
              <notificationType>Failed</notificationType>
              <notificationType>Fixed</notificationType>
            </notifications>
          </group>
          <group name="buildmaster">
            <notifications>
              <!--<notificationType>Always</notificationType>-->
              <notificationType>Failed</notificationType>
              <notificationType>Fixed</notificationType>
            </notifications>
          </group>
        </groups>
        <converters>
          <regexConverter find="$" replace="@my.com" />
        </converters>
        <modifierNotificationTypes>
          <NotificationType>Failed</NotificationType>
          <NotificationType>Fixed</NotificationType>
        </modifierNotificationTypes>
        <subjectSettings>
          <subject buildResult="StillBroken" value="Build is still broken for {CCNetProject}" />
        </subjectSettings>
      </email>
    </publishers>
  </project>
</cruisecontrol>