Install Jenkins and the Rake plugin. Then create a Rakefile. Here is an example that only runs cukes with @jenkins tags
require 'rubygems' require 'cucumber' require 'cucumber/rake/task' Cucumber::Rake::Task.new( :features) do |t| t.cucumber_opts = "features --tags @jenkins " end
One thing to watch out for. If you run tests in IE on Windows, run "services.msc", find the Jenkins service, and check the box to allow access to the screen.
source share