From: Jean-Philippe Lang Date: Fri, 6 Apr 2012 09:36:07 +0000 (+0000) Subject: Adds a quick and dirty task for creating databases on the CI server. X-Git-Tag: 1.4.0~32 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7993f2f32987cdb902c27b6ae1f263e69b710b99;p=redmine.git Adds a quick and dirty task for creating databases on the CI server. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9335 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/tasks/ci.rake b/lib/tasks/ci.rake index e6cf78fa3..06d03ae73 100644 --- a/lib/tasks/ci.rake +++ b/lib/tasks/ci.rake @@ -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