To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / bc / bc8bccaed2502b05fe9e07abbe378d2850bf83c3.svn-base @ 1297:0a574315af3e
History | View | Annotate | Download (3.16 KB)
| 1 | 1296:038ba2d95de8 | Chris | desc "Run the Continous Integration tests for Redmine" |
|---|---|---|---|
| 2 | task :ci do |
||
| 3 | # RAILS_ENV and ENV[] can diverge so force them both to test |
||
| 4 | ENV['RAILS_ENV'] = 'test' |
||
| 5 | RAILS_ENV = 'test' |
||
| 6 | Rake::Task["ci:setup"].invoke |
||
| 7 | Rake::Task["ci:build"].invoke |
||
| 8 | Rake::Task["ci:teardown"].invoke |
||
| 9 | end |
||
| 10 | |||
| 11 | # Tasks can be hooked into by redefining them in a plugin |
||
| 12 | namespace :ci do |
||
| 13 | desc "Setup Redmine for a new build." |
||
| 14 | task :setup do |
||
| 15 | Rake::Task["ci:dump_environment"].invoke |
||
| 16 | Rake::Task["db:create"].invoke |
||
| 17 | Rake::Task["db:migrate"].invoke |
||
| 18 | Rake::Task["db:schema:dump"].invoke |
||
| 19 | Rake::Task["test:scm:update"].invoke |
||
| 20 | end |
||
| 21 | |||
| 22 | desc "Build Redmine" |
||
| 23 | task :build do |
||
| 24 | Rake::Task["test"].invoke |
||
| 25 | end |
||
| 26 | |||
| 27 | # Use this to cleanup after building or run post-build analysis. |
||
| 28 | desc "Finish the build" |
||
| 29 | task :teardown do |
||
| 30 | end |
||
| 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 | |||
| 68 | desc "Dump the environment information to a BUILD_ENVIRONMENT ENV variable for debugging" |
||
| 69 | task :dump_environment do |
||
| 70 | |||
| 71 | ENV['BUILD_ENVIRONMENT'] = ['ruby -v', 'gem -v', 'gem list'].collect do |command| |
||
| 72 | result = `#{command}`
|
||
| 73 | "$ #{command}\n#{result}"
|
||
| 74 | end.join("\n")
|
||
| 75 | |||
| 76 | end |
||
| 77 | end |