]> source.dussan.org Git - redmine.git/commitdiff
Adds a quick and dirty task for creating databases on the CI server.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 6 Apr 2012 09:36:07 +0000 (09:36 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 6 Apr 2012 09:36:07 +0000 (09:36 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9335 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/tasks/ci.rake

index e6cf78fa3b81b54021015b1ecb9ae4feeb66ff14..06d03ae737df6b371adff91fe5662cb03ee6a264 100644 (file)
@@ -29,6 +29,42 @@ namespace :ci do
   task :teardown do
   end
 
+  desc "Creates and configures the databases for the CI server"
+  task :database do
+    path = 'config/database.yml'
+    unless File.exists?(path)
+      database = ENV['DATABASE_ADAPTER']
+      ruby = ENV['RUBY_VER'].gsub('.', '').gsub('-', '')
+      branch = ENV['BRANCH'].gsub('.', '').gsub('-', '')
+      dev_db_name = "ci_#{branch}_#{ruby}_dev"
+      test_db_name = "ci_#{branch}_#{ruby}_test"
+
+      case database
+      when 'mysql'
+        raise "Error creating databases" unless
+          system(%|mysql -u jenkins --password=jenkins -e 'create database #{dev_db_name} character set utf8;'|) &&
+          system(%|mysql -u jenkins --password=jenkins -e 'create database #{test_db_name} character set utf8;'|)
+        dev_conf =  { 'adapter' => (RUBY_VERSION >= '1.9' ? 'mysql2' : 'mysql'), 'database' => dev_db_name, 'host' => 'localhost', 'username' => 'jenkins', 'password' => 'jenkins', 'encoding' => 'utf8' }
+        test_conf = { 'adapter' => (RUBY_VERSION >= '1.9' ? 'mysql2' : 'mysql'), 'database' => test_db_name, 'host' => 'localhost', 'username' => 'jenkins', 'password' => 'jenkins', 'encoding' => 'utf8' }
+      when 'postgresql'
+        raise "Error creating databases" unless
+          system(%|psql -U jenkins -d postgres -c "create database #{dev_db_name} owner jenkins encoding 'UTF8';|) &&
+          system(%|psql -U jenkins -d postgres -c "create database #{test_db_name} owner jenkins encoding 'UTF8';|)
+        dev_conf =  { 'adapter' => 'postgresql', 'database' => dev_db_name, 'host' => 'localhost', 'username' => 'jenkins', 'password' => 'jenkins' }
+        test_conf = { 'adapter' => 'postgresql', 'database' => test_db_name, 'host' => 'localhost', 'username' => 'jenkins', 'password' => 'jenkins' }
+      when 'sqlite3'
+        dev_conf =  { 'adapter' => 'sqlite3', 'database' => "db/#{dev_db_name}.sqlite3" }
+        test_conf = { 'adapter' => 'sqlite3', 'database' => "db/#{test_db_name}.sqlite3" }
+      else
+        raise "Unknown database"
+      end
+
+      File.open(path, 'w') do |f|
+        f.write YAML.dump({'development' => dev_conf, 'test' => test_conf})
+      end
+    end
+  end
+
   desc "Dump the environment information to a BUILD_ENVIRONMENT ENV variable for debugging"
   task :dump_environment do