Continuous Integration (Hudson/Jenkins) and R Programming

Viewed 4416

Does anyone know of a way to do continuous integration with R programming? I'm aware of tools like the svUnit package to do the unit tests, but has anyone tried to run these with Hudson/Jenkins?

3 Answers

Hudson/Jenkins supports running bash scripts. I think that you can use this as an entrance to your R world. In R, a simple way to keep result is to use sink("toYourFile.txt") and then use CI's result display function to show the toYourFile.txt.

Related