##// END OF EJS Templates
Adds sqlserver configuration for the CI server....
Jean-Philippe Lang -
r10971:db26041f831c
parent child
Show More
@@ -1,78 +1,81
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 32 desc "Creates and configures the databases for the CI server"
33 33 task :database do
34 34 path = 'config/database.yml'
35 35 unless File.exists?(path)
36 36 database = ENV['DATABASE_ADAPTER']
37 37 ruby = ENV['RUBY_VER'].gsub('.', '').gsub('-', '')
38 38 branch = ENV['BRANCH'].gsub('.', '').gsub('-', '')
39 39 dev_db_name = "ci_#{branch}_#{ruby}_dev"
40 40 test_db_name = "ci_#{branch}_#{ruby}_test"
41 41
42 42 case database
43 43 when 'mysql'
44 44 raise "Error creating databases" unless
45 45 system(%|mysql -u jenkins --password=jenkins -e 'create database #{dev_db_name} character set utf8;'|) &&
46 46 system(%|mysql -u jenkins --password=jenkins -e 'create database #{test_db_name} character set utf8;'|)
47 47 dev_conf = { 'adapter' => (RUBY_VERSION >= '1.9' ? 'mysql2' : 'mysql'), 'database' => dev_db_name, 'host' => 'localhost', 'username' => 'jenkins', 'password' => 'jenkins', 'encoding' => 'utf8' }
48 48 test_conf = { 'adapter' => (RUBY_VERSION >= '1.9' ? 'mysql2' : 'mysql'), 'database' => test_db_name, 'host' => 'localhost', 'username' => 'jenkins', 'password' => 'jenkins', 'encoding' => 'utf8' }
49 49 when 'postgresql'
50 50 raise "Error creating databases" unless
51 51 system(%|psql -U jenkins -d postgres -c "create database #{dev_db_name} owner jenkins encoding 'UTF8';"|) &&
52 52 system(%|psql -U jenkins -d postgres -c "create database #{test_db_name} owner jenkins encoding 'UTF8';"|)
53 53 dev_conf = { 'adapter' => 'postgresql', 'database' => dev_db_name, 'host' => 'localhost', 'username' => 'jenkins', 'password' => 'jenkins' }
54 54 test_conf = { 'adapter' => 'postgresql', 'database' => test_db_name, 'host' => 'localhost', 'username' => 'jenkins', 'password' => 'jenkins' }
55 55 when 'sqlite3'
56 56 dev_conf = { 'adapter' => 'sqlite3', 'database' => "db/#{dev_db_name}.sqlite3" }
57 57 test_conf = { 'adapter' => 'sqlite3', 'database' => "db/#{test_db_name}.sqlite3" }
58 when 'sqlserver'
59 dev_conf = { 'adapter' => 'sqlserver', 'database' => dev_db_name, 'host' => 'mssqlserver', 'port' => 1433, 'username' => 'jenkins', 'password' => 'jenkins' }
60 test_conf = { 'adapter' => 'sqlserver', 'database' => test_db_name, 'host' => 'mssqlserver', 'port' => 1433, 'username' => 'jenkins', 'password' => 'jenkins' }
58 61 else
59 62 raise "Unknown database"
60 63 end
61 64
62 65 File.open(path, 'w') do |f|
63 66 f.write YAML.dump({'development' => dev_conf, 'test' => test_conf})
64 67 end
65 68 end
66 69 end
67 70
68 71 desc "Dump the environment information to a BUILD_ENVIRONMENT ENV variable for debugging"
69 72 task :dump_environment do
70 73
71 74 ENV['BUILD_ENVIRONMENT'] = ['ruby -v', 'gem -v', 'gem list'].collect do |command|
72 75 result = `#{command}`
73 76 "$ #{command}\n#{result}"
74 77 end.join("\n")
75 78
76 79 end
77 80 end
78 81
General Comments 0
You need to be logged in to leave comments. Login now