activerecord-hackery--ransack/.travis.yml

48 lines
1.1 KiB
YAML
Raw Normal View History

2014-01-01 18:07:46 +00:00
language: ruby
rvm:
2019-08-18 22:50:41 +00:00
- 2.6.3
2019-08-18 12:18:54 +00:00
services:
- mysql
2012-01-19 14:06:10 +00:00
env:
2019-05-28 09:30:58 +00:00
- RAILS=6-0-stable DB=sqlite3
- RAILS=6-0-stable DB=mysql
- RAILS=6-0-stable DB=postgres
2019-08-18 12:18:54 +00:00
- RAILS=v6.0.0 DB=sqlite3
- RAILS=v6.0.0 DB=mysql
- RAILS=v6.0.0 DB=postgres
- RAILS=5-2-stable DB=sqlite3
- RAILS=5-2-stable DB=mysql
- RAILS=5-2-stable DB=postgres
- RAILS=v5.2.1 DB=sqlite3
- RAILS=v5.2.1 DB=mysql
- RAILS=v5.2.1 DB=postgres
2018-06-23 17:00:21 +00:00
- RAILS=v5.2.0 DB=sqlite3
- RAILS=v5.2.0 DB=mysql
- RAILS=v5.2.0 DB=postgres
2018-07-02 20:48:51 +00:00
- RAILS=5-1-stable DB=sqlite3
- RAILS=5-1-stable DB=mysql
- RAILS=5-1-stable DB=postgres
2018-06-23 17:00:21 +00:00
matrix:
allow_failures:
- env: RAILS=5-2-stable DB=sqlite3
- env: RAILS=5-2-stable DB=mysql
- env: RAILS=5-2-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
addons:
code_climate:
repo_token: 8b701c4364d51a0217105e08c06922d600cec3d9e60d546a89e3ddfe46e0664e
2019-06-05 20:08:56 +00:00
postgresql: "9.6"