In this section:
Make sure to have Ruby interpreter (MRI Ruby, JRuby, IronRuby, REE, MacRuby, or etc) with rake 0.7.3 gem or higher (mandatory) and all necessary gems for your Ruby (or ROR) projects and testing frameworks installed on at least one build agent.
You can install several Ruby interpreters in different folders. On Linux/MacOS it is easier to configure using RVM. It is possible to install Ruby interpreter and necessary Ruby gems using Command Line build runner step. If you want to automatically configure agent requirements for this interpreters you need to register its paths in build agent configuration properties and then refer to such property name in Rake build runner configuration.
To install a gem execute:
gem install <gem's name> |
You can refer to the Ruby Gems Manuals for more information. Also instead of gem command you can install gems using Bundler gem
If you use Ruby 1.9 for Shoulda, Test-Spec and Test::Unit frameworks to operate, the 'test-unit' gem must be installed. |
RUBYLIB
environment variable. You need to ensure your program doesn't clear this environment variable, but you may append your paths to it.Spec::Rake::SpecTask.spec_opts
of your rakefile is affected by SPEC_OPTS
command line parameter. Rake Runner always uses SPEC_OPTS
to setup its custom formatter. Thus you should set up Spec Options in Web UI. The same limitation exist for Cucumber tests options.rakeRunnerPluginAgent.zip/version
(agent plugin), and rakeRunnerPluginServer.jar/version
(server plugin).Option |
Description |
|
---|---|---|
Path to a Rakefile file |
Enter Rakefile path if you don't want to use a default one. Specified path should be relative to the build checkout directory. |
|
Rakefile content |
Type in the Rakefile content instead of using existing Rakefile. The new Rakefile will created dynamically from the specified content before running Rake. |
|
Working directory |
Optional. Specify if differs from the build checkout directory. |
|
Rake tasks |
Enter tasks names separated by space character if you don't want to use ' |
|
Additional Rake command line parameters |
Specified parameters will be added to '
|
Option |
Description |
|
---|---|---|
Use default Ruby |
Use Ruby interpreter settings defined in Ruby environment configurator build feature settings or interpreter will be searched in the |
|
Ruby interpreter path |
Path to Ruby interpreter. Path cannot be empty. In this field you can use values of environment and system variables. For example:
|
|
RVM interpreter |
Specify here the RVM interpreter name and optionally a gemset configured on a build agent. |
Option |
Description |
---|---|
Bundler: bundle exec |
If your project uses Bundler requirements manager and your Rakefile doesn't load bundler setup script, this option will allow you to launch rake tasks using 'bundle exec' command emulation. If you want to execute 'bundle install' command you need to do it in Command Line step before Rake runner step. Also don't forget to setup Ruby environment configurator build feature to automatically pass Ruby interpreter to command line runner. |
Debug |
Check the Track invoke/execute stages option to enable showing Invoke stage data in the build log. |
Option |
Description |
|
---|---|---|
Attached reporters |
If you want TeamCity to display test results on the dedicated Tests tab of the Build Results page, select here the testing framework you use: Test::Unit, Test-Spec, Shoulda, RSpec or Cucumber.
|
XML Report ProcessingSelect a report type to import. You only need to import tests reports, if the automatic tests reporting fails to detect your tests.
|
These options can be configured using system properties in Properties and Environment Variables section.
Option |
Description |
---|---|
system.teamcity.rake.runner.gem.rake.version |
Allows to specify which rake gem to use for launching rake build. |
system.teamcity.rake.runner.gem.testunit.version |
If your application doesn't use latest installed (in Ruby sdk) test-unit gem version please specify it here. Otherwise Test::Unit test reporter may try to load incorrect gem version and affect runtime behavior. If test-unit gem is installed but you application uses Test::Unit bundled in Ruby 1.8.x SDK please set version value to 'built-in'. |
system.teamcity.rake.runner.gem.bundler.version |
Launches bundler emulation for specified bundler gem version (the gem should be already installed on an agent. |
system.teamcity.rake.runner.custom.gemfile |
Customizes Gemfile if it isn't located in checkout directory root. |
system.teamcity.rake.runner.custom.bundle.path |
Sets BUNDLE_PATH if TeamCity doesn't fetch it correctly from <Gemfile containing directory>/.bundle/config. |
Rake support is implemented as an open-source plugin. For development links refer to the plugin's page.