zoukankan      html  css  js  c++  java
  • CruiseControl 安装配置

    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:WebViewmy1</workingDirectory>
        <triggers>
          <intervalTrigger name="continuous" seconds="180" buildCondition="ForceBuild" initialSeconds="50"/>
        </triggers>
        <sourcecontrol type="external">
          <executable>TortoiseProc.exe</executable>
          <args> /command:update /path:"D:WebViewmy1" /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.0Common7IDEdevenv.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>
    

      

  • 相关阅读:
    JS基础_函数的简介
    frp 使用入门
    树莓派开启smb
    python 反射调用
    VIDEOIO ERROR: V4L: can't open camera by index 0 for raspberryPi
    face_recognition 人脸识别报错
    安装FFMpeg CentOS 7
    Centos 7 smb 安装使用
    ImportError: libQtTest.so.4: cannot open shared
    Raspberry Pi 3b+ 配置摄像头
  • 原文地址:https://www.cnblogs.com/heys/p/7988990.html
Copyright © 2011-2022 走看看