You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2012/10/22 09:38:39 UTC

svn commit: r1400789 - /buildr/trunk/rakelib/stage.rake

Author: donaldp
Date: Mon Oct 22 07:38:38 2012
New Revision: 1400789

URL: http://svn.apache.org/viewvc?rev=1400789&view=rev
Log:
Remove the execution of the tests as part of the staging process, instead we will rely on our CI to give us a heads up when the tests are failing

Modified:
    buildr/trunk/rakelib/stage.rake

Modified: buildr/trunk/rakelib/stage.rake
URL: http://svn.apache.org/viewvc/buildr/trunk/rakelib/stage.rake?rev=1400789&r1=1400788&r2=1400789&view=diff
==============================================================================
--- buildr/trunk/rakelib/stage.rake (original)
+++ buildr/trunk/rakelib/stage.rake Mon Oct 22 07:38:38 2012
@@ -54,15 +54,6 @@ task 'prepare' do |task, args|
 
   task('license').invoke
 
-  # Need JRuby, Scala and Groovy installed to run all the specs.
-  lambda do
-    puts 'Checking that we have Scala and Groovy available ... '
-    `scala -version`
-    $?.exitstatus == 1 or fail 'Scala is not installed'
-    sh 'groovy -version'
-    puts '[X] We have Scala and Groovy'
-  end.call
-
   # Need Prince to generate PDF
   lambda do
     puts 'Checking that we have prince available ... '
@@ -77,11 +68,6 @@ task 'prepare' do |task, args|
     rubyforge.login
     rubyforge.scrape_project(spec.name)
   end.call
-
-  # We will be speccing in one platform, so also spec the other one.
-  task('spec:ruby_1_9').invoke unless RUBY_VERSION >= '1.9' && !RUBY_PLATFORM[/java/]
-  task('spec:ruby_1_8').invoke unless RUBY_VERSION >= '1.8.7' && !RUBY_PLATFORM[/java/]
-  task('spec:jruby').invoke unless RUBY_PLATFORM[/java/]
 end
 
 task 'stage' => %w(clobber prepare) do |task, args|