activerecord-hackery--ransack/.travis.yml

32 lines
808 B
YAML
Raw Normal View History

2014-01-01 18:07:46 +00:00
language: ruby
before_install:
- travis_retry gem install bundler
rvm:
- 2.1
- 2.0.0
- 1.9.3
2012-01-19 14:06:10 +00:00
env:
- RAILS=4-1-stable DB=sqlite3
- RAILS=4-1-stable DB=mysql
- RAILS=4-1-stable DB=postgres
- RAILS=4-0-stable DB=sqlite3
- RAILS=4-0-stable DB=mysql
- RAILS=4-0-stable DB=postgres
- RAILS=3-2-stable DB=sqlite
- RAILS=3-2-stable DB=mysql
- RAILS=3-2-stable DB=postgres
- RAILS=3-1-stable DB=sqlite
- RAILS=3-1-stable DB=mysql
- RAILS=3-1-stable DB=postgres
- RAILS=3-0-stable DB=sqlite
- RAILS=3-0-stable DB=mysql
- RAILS=3-0-stable DB=postgres
2013-12-07 00:51:55 +00:00
before_script:
- mysql -e 'create database ransack collate utf8_general_ci;'
- mysql -e 'use ransack;show variables like "%character%";show variables like "%collation%";'
2013-12-07 00:51:55 +00:00
- psql -c 'create database ransack;' -U postgres