We currently use CruiseControl (ruby version) for CI, and it runs our unit and integration tests (primarily rspec).
That's great: it gives us instant feedback on any functional issues or regressions (I use instant in the approximate sense;-).
What it doesn't tell us is whether our commits have introduced a performance regression.
I'd like to have our build go RED if the tests measure a performance degredation of say 5% And of course point us to the issue, be it poorly responding database queries, time spent in a ruby function or controller response.
Continuous Performance Testing is a topic that has had a little discussion over the past few years, but aside from a few vendor offerings (mainly aimed at the java and .NET world), I don't see much on the Rails side. I think we are like most: performance, load and volume testing is a separate activity, usually done before a major update, but otherwise frequently forgotten during the routine iterations and releases. And we only keep ourselves out of major trouble because of NewRelic's awesomeness at monitoring our live instances, and a dash of luck.
CI is essential for an agile development practice, and the lack of continuous performance testing during the build seems to be one of the few remaining big gaps in our tooling.
I would love some answers that can point to any tools that can help, or even experience in how you may have hacked this yourself. NB: we are not wed to CC, and not averse to including other - even commercial - products in the build cycle if they can do the job.