I have a set of projects with pure C and Cobol code, I am looking for a continuous integration tool, but i have never used these kind of tools before. My code is in svn and the most important features I am looking for are:
- Object version tracking
- Compile issues reporting with mails
Does anyone has experience using such tools with C and Cobol code?
I use jenkins for C continuous integration. Jenkins jobs can run bash scripts, so at a minimum you can have the script be
make. If make returns non-zero, the build will fail. There is additional stuff you can do to like have gcov/lcov reports collected when you have it up and running as well.