Skip to content

Commit

Permalink
Update CI configuration to reflect latest gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Gunderloy authored and NZKoz committed Jan 7, 2009
1 parent 8736dd3 commit 19818eb
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 9 deletions.
15 changes: 8 additions & 7 deletions ci/ci_build.rb
Expand Up @@ -23,6 +23,7 @@
build_results[:activesupport] = system 'rake'
end

rm_f "#{root_dir}/activerecord/debug.log"
cd "#{root_dir}/activerecord" do
puts
puts "[CruiseControl] Building ActiveRecord with MySQL"
Expand All @@ -37,13 +38,12 @@
build_results[:activerecord_postgresql8] = system 'rake test_postgresql'
end

# Sqlite2 is disabled until tests are fixed
# cd "#{root_dir}/activerecord" do
# puts
# puts "[CruiseControl] Building ActiveRecord with SQLite 2"
# puts
# build_results[:activerecord_sqlite] = system 'rake test_sqlite'
# end
cd "#{root_dir}/activerecord" do
puts
puts "[CruiseControl] Building ActiveRecord with SQLite 2"
puts
build_results[:activerecord_sqlite] = system 'rake test_sqlite'
end

cd "#{root_dir}/activerecord" do
puts
Expand All @@ -59,6 +59,7 @@
build_results[:activemodel] = system 'rake'
end

rm_f "#{root_dir}/activeresource/debug.log"
cd "#{root_dir}/activeresource" do
puts
puts "[CruiseControl] Building ActiveResource"
Expand Down
11 changes: 11 additions & 0 deletions ci/ci_setup_notes.txt
Expand Up @@ -54,10 +54,14 @@ ci ALL=NOPASSWD: /usr/local/bin/geminstaller, /usr/local/bin/ruby, /usr/loc
* Install/setup nginx:
$ sudo aptitude install nginx
$ sudo vi /etc/nginx/sites-available/default
# Change server_name entry to match server name

# comment two lines and add one to proxy to ccrb:
# root /var/www/nginx-default;
# index index.html index.htm;
proxy_pass http://127.0.0.1:3333;

# also comment default locations for /doc and /images
$ sudo /etc/init.d/nginx start

* Add project to cruise (It will still fail until everything is set up):
Expand Down Expand Up @@ -101,6 +105,13 @@ $ sudo aptitude install sqlite sqlite3 libsqlite-dev libsqlite3-dev
$ sudo aptitude install postgresql postgresql-server-dev-8.3
$ sudo su - postgres -c 'createuser -s ci'

* Install fcgi libraries
$ sudo apt-get install libfcgi-dev

* Install memcached and start for first time (should start on reboot automatically)
$ sudo aptitude install memcached
$ sudo /etc/init.d/memcached start

* Install and run GemInstaller to get all dependency gems
$ sudo gem install geminstaller
$ cd ~/.cruise/projects/rails/work
Expand Down
3 changes: 2 additions & 1 deletion ci/cruise_config.rb
@@ -1,5 +1,6 @@
Project.configure do |project|
project.build_command = 'ruby ci/ci_build.rb'
project.email_notifier.emails = ['thewoolleyman@gmail.com','michael@koziarski.com', 'david@loudthinking.com', 'jeremy@bitsweat.net', 'josh@joshpeek.com', 'pratiknaik@gmail.com']
project.email_notifier.emails = ['thewoolleyman@gmail.com']
# project.email_notifier.emails = ['thewoolleyman@gmail.com','michael@koziarski.com', 'david@loudthinking.com', 'jeremy@bitsweat.net', 'josh@joshpeek.com', 'pratiknaik@gmail.com', 'wycats@gmail.com']
project.email_notifier.from = 'thewoolleyman+railsci@gmail.com'
end
8 changes: 7 additions & 1 deletion ci/geminstaller.yml
Expand Up @@ -2,13 +2,19 @@
gems:
- name: geminstaller
version: >= 0.4.3
- name: fcgi
version: >= 0.8.7
- name: memcache-client
version: >= 1.5.0
- name: mocha
version: >= 0.9.0
version: >= 0.9.4
- name: mysql
#version: >= 2.7
version: = 2.7
- name: postgres
version: >= 0.7.9.2008.01.28
- name: rack
version: '~> 0.9.0'
- name: rake
version: >= 0.8.1
- name: sqlite-ruby
Expand Down

0 comments on commit 19818eb

Please sign in to comment.