aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorJosh Kalderimis <josh.kalderimis@gmail.com>2011-07-15 09:48:10 +0200
committerJosh Kalderimis <josh.kalderimis@gmail.com>2011-07-15 10:47:50 +0200
commitd664eba5b42d5a4cf8acb4f198796c194a662414 (patch)
tree2e24be875b78decf4050c44c21d43238bc93ddb4 /.travis.yml
parentf88e9d83f13c7d29120696d7e568fae1efea67f4 (diff)
downloadrails-d664eba5b42d5a4cf8acb4f198796c194a662414.tar.gz
rails-d664eba5b42d5a4cf8acb4f198796c194a662414.tar.bz2
rails-d664eba5b42d5a4cf8acb4f198796c194a662414.zip
Added a .travis.yml config and travis specific ci script.
Don't install ruby-debug if running the test suite on Travis, linecache19 is the main offender, very very slow. And do not install pg if Travis is bundling the gems, pg will be setup on Travis soon.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000000..d33c6a3c86
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,12 @@
+script: 'ci/travis.rb'
+notifications:
+ disabled: true
+rvm:
+ - 1.8.7
+ - 1.9.2
+env:
+ - "GEM=railties"
+ - "GEM=ap,am,amo,ares,as"
+ - "GEM=ar:mysql"
+ - "GEM=ar:mysql2"
+ - "GEM=ar:sqlite3" \ No newline at end of file