c++ continuous integration with performance metrics

前端 未结 7 1287
不思量自难忘°
不思量自难忘° 2021-02-11 01:16

I want to set up a continuous integration and test framework for my open source C++ project. The desired features are:

1. check out the source code
2. run all th         


        
7条回答
  •  南方客
    南方客 (楼主)
    2021-02-11 01:59

    You might also want to ask this question on the CruiseControl user mailing list to see if others are doing the same thing.

    But I don't know if Cruisecontrol allows easy integration of performance metrics.

    There are two ways you might handle your performance metrics with CruiseControl:

    1. If you have xml data you can merge it into the log file then integrate it into email and web pages with some .xsl, or
    2. If you have an html report you can use the artifact publisher to make it available from the web interface using the artifact publisher.

    I'm a bit biased on the subject because I work on the CruiseControl project but there are several other CI tools that would work as well.

提交回复
热议问题