spec/fixtures/rails.single.config.xml in hudson-0.3.0.beta.9 vs spec/fixtures/rails.single.config.xml in hudson-0.3.0.beta.10
- old
+ new
@@ -36,43 +36,28 @@
<canRoam>true</canRoam>
<disabled>false</disabled>
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
<concurrentBuild>false</concurrentBuild>
<builders>
+ <hudson.tasks.Shell>
+ <command>bundle install</command>
+ </hudson.tasks.Shell>
<hudson.plugins.ruby.Ruby>
<command>
unless File.exist?("config/database.yml")
require 'fileutils'
example = Dir["config/database*"].first
puts "Using #{example} for config/database.yml"
FileUtils.cp example, "config/database.yml"
end
</command>
</hudson.plugins.ruby.Ruby>
- <hudson.plugins.rake.Rake>
- <rakeInstallation>(Default)</rakeInstallation>
- <rakeFile/>
- <rakeLibDir/>
- <rakeWorkingDir/>
- <tasks>db:schema:load</tasks>
- <silent>false</silent>
- </hudson.plugins.rake.Rake>
- <hudson.plugins.rake.Rake>
- <rakeInstallation>(Default)</rakeInstallation>
- <rakeFile/>
- <rakeLibDir/>
- <rakeWorkingDir/>
- <tasks>features</tasks>
- <silent>false</silent>
- </hudson.plugins.rake.Rake>
- <hudson.plugins.rake.Rake>
- <rakeInstallation>(Default)</rakeInstallation>
- <rakeFile/>
- <rakeLibDir/>
- <rakeWorkingDir/>
- <tasks>spec</tasks>
- <silent>false</silent>
- </hudson.plugins.rake.Rake>
+ <hudson.tasks.Shell>
+ <command>bundle exec rake db:schema:load</command>
+ </hudson.tasks.Shell>
+ <hudson.tasks.Shell>
+ <command>bundle exec rake</command>
+ </hudson.tasks.Shell>
</builders>
<publishers/>
<buildWrappers/>
</project>