diff options
author | Mike Gunderloy <MikeG1@larkfarm.com> | 2009-08-18 06:12:33 -0500 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2009-08-18 13:24:39 +0100 |
commit | ef935240582ef6a7d47a9716e8269db817c91503 (patch) | |
tree | 06471bb5f1984721454f9e5f132343e6dba2bd6a | |
parent | 25e5b0c4a8d0045715a6ad11e2898585826e4e9b (diff) | |
download | rails-ef935240582ef6a7d47a9716e8269db817c91503.tar.gz rails-ef935240582ef6a7d47a9716e8269db817c91503.tar.bz2 rails-ef935240582ef6a7d47a9716e8269db817c91503.zip |
Remove sqlite2 build from CI recipe [#3066 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
-rwxr-xr-x | ci/ci_build.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ci/ci_build.rb b/ci/ci_build.rb index 7d81fa843a..06e513f907 100755 --- a/ci/ci_build.rb +++ b/ci/ci_build.rb @@ -39,13 +39,6 @@ cd "#{root_dir}/activerecord" do end cd "#{root_dir}/activerecord" do - puts - puts "[CruiseControl] Building ActiveRecord with SQLite 2" - puts - build_results[:activerecord_sqlite] = system 'rake test_sqlite' -end - -cd "#{root_dir}/activerecord" do puts puts "[CruiseControl] Building ActiveRecord with SQLite 3" puts @@ -96,7 +89,6 @@ puts "[CruiseControl] #{`uname -a`}" puts "[CruiseControl] #{`ruby -v`}" puts "[CruiseControl] #{`mysql --version`}" puts "[CruiseControl] #{`pg_config --version`}" -puts "[CruiseControl] SQLite2: #{`sqlite -version`}" puts "[CruiseControl] SQLite3: #{`sqlite3 -version`}" `gem env`.each_line {|line| print "[CruiseControl] #{line}"} puts "[CruiseControl] Local gems:" |