##// END OF EJS Templates
Adds a quick and dirty task for creating databases on the CI server....
Jean-Philippe Lang -
r9201:7993f2f32987
parent child
Show More
@@ -1,42 +1,78
1 1 desc "Run the Continous Integration tests for Redmine"
2 2 task :ci do
3 3 # RAILS_ENV and ENV[] can diverge so force them both to test
4 4 ENV['RAILS_ENV'] = 'test'
5 5 RAILS_ENV = 'test'
6 6 Rake::Task["ci:setup"].invoke
7 7 Rake::Task["ci:build"].invoke
8 8 Rake::Task["ci:teardown"].invoke
9 9 end
10 10
11 11 # Tasks can be hooked into by redefining them in a plugin
12 12 namespace :ci do
13 13 desc "Setup Redmine for a new build."
14 14 task :setup do
15 15 Rake::Task["ci:dump_environment"].invoke
16 16 Rake::Task["db:create"].invoke
17 17 Rake::Task["db:migrate"].invoke
18 18 Rake::Task["db:schema:dump"].invoke
19 19 Rake::Task["test:scm:update"].invoke
20 20 end
21 21
22 22 desc "Build Redmine"
23 23 task :build do
24 24 Rake::Task["test"].invoke
25 25 end
26 26
27 27 # Use this to cleanup after building or run post-build analysis.
28 28 desc "Finish the build"
29 29 task :teardown do
30 30 end
31 31
32 desc "Creates and configures the databases for the CI server"
33 task :database do
34 path = 'config/database.yml'
35 unless File.exists?(path)
36 database = ENV['DATABASE_ADAPTER']
37 ruby = ENV['RUBY_VER'].gsub('.', '').gsub('-', '')
38 branch = ENV['BRANCH'].gsub('.', '').gsub('-', '')
39 dev_db_name = "ci_#{branch}_#{ruby}_dev"
40 test_db_name = "ci_#{branch}_#{ruby}_test"
41
42 case database
43 when 'mysql'
44 raise "Error creating databases" unless
45 system(%|mysql -u jenkins --password=jenkins -e 'create database #{dev_db_name} character set utf8;'|) &&
46 system(%|mysql -u jenkins --password=jenkins -e 'create database #{test_db_name} character set utf8;'|)
47 dev_conf = { 'adapter' => (RUBY_VERSION >= '1.9' ? 'mysql2' : 'mysql'), 'database' => dev_db_name, 'host' => 'localhost', 'username' => 'jenkins', 'password' => 'jenkins', 'encoding' => 'utf8' }
48 test_conf = { 'adapter' => (RUBY_VERSION >= '1.9' ? 'mysql2' : 'mysql'), 'database' => test_db_name, 'host' => 'localhost', 'username' => 'jenkins', 'password' => 'jenkins', 'encoding' => 'utf8' }
49 when 'postgresql'
50 raise "Error creating databases" unless
51 system(%|psql -U jenkins -d postgres -c "create database #{dev_db_name} owner jenkins encoding 'UTF8';|) &&
52 system(%|psql -U jenkins -d postgres -c "create database #{test_db_name} owner jenkins encoding 'UTF8';|)
53 dev_conf = { 'adapter' => 'postgresql', 'database' => dev_db_name, 'host' => 'localhost', 'username' => 'jenkins', 'password' => 'jenkins' }
54 test_conf = { 'adapter' => 'postgresql', 'database' => test_db_name, 'host' => 'localhost', 'username' => 'jenkins', 'password' => 'jenkins' }
55 when 'sqlite3'
56 dev_conf = { 'adapter' => 'sqlite3', 'database' => "db/#{dev_db_name}.sqlite3" }
57 test_conf = { 'adapter' => 'sqlite3', 'database' => "db/#{test_db_name}.sqlite3" }
58 else
59 raise "Unknown database"
60 end
61
62 File.open(path, 'w') do |f|
63 f.write YAML.dump({'development' => dev_conf, 'test' => test_conf})
64 end
65 end
66 end
67
32 68 desc "Dump the environment information to a BUILD_ENVIRONMENT ENV variable for debugging"
33 69 task :dump_environment do
34 70
35 71 ENV['BUILD_ENVIRONMENT'] = ['ruby -v', 'gem -v', 'gem list'].collect do |command|
36 72 result = `#{command}`
37 73 "$ #{command}\n#{result}"
38 74 end.join("\n")
39 75
40 76 end
41 77 end
42 78
General Comments 0
You need to be logged in to leave comments. Login now