What toolchains exist for Continuous Integration with C++?

后端 未结 6 944
天涯浪人
天涯浪人 2021-01-31 09:14

Continuous Integration toolchains for .NET, Java, and other languages are relatively well defined, but the C++ market seems to have a lot of diversity.

By CI \"toolcha

6条回答
  •  野的像风
    2021-01-31 09:31

    G'day,

    We actually faced this problem at a site where I was contracting previously.

    One bloke sat down and wrote tools, mainly shell scripts, to

    1. check out the current code base every hour or so and do a build to check if it was broken, and
    2. check out the latest good build and do a complete build and run about 8,000 regression tests.

    We just couldn't find anything commercially available to do this and so Charlie sat down and wrote this in bash shell scripts and it was running on HP-UX.

    cheers, Rob

提交回复
热议问题