activerecord-hackery--ransack/.travis.yml

48 lines
1014 B
YAML
Raw Normal View History

2014-01-01 18:07:46 +00:00
language: ruby
rvm:
2019-10-16 10:56:51 +00:00
- 2.6.5
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.3 DB=sqlite3
- RAILS=v5.2.3 DB=mysql
- RAILS=v5.2.3 DB=postgres
2018-06-23 17:00:21 +00:00
matrix:
allow_failures:
2019-10-31 06:57:48 +00:00
- env: RAILS=6-0-stable DB=sqlite3
- env: RAILS=6-0-stable DB=mysql
- env: RAILS=6-0-stable DB=postgres
2013-12-07 00:51:55 +00:00
before_script:
2019-08-17 12:10:13 +00:00
- if [ "$DB" = "mysql" ];
then
mysql -e 'create database ransack collate utf8_general_ci;';
mysql -e 'use ransack;show variables like "%character%";show variables like "%collation%";';
fi
- if [ "$DB" = "postgres" ];
then
psql -c 'create database ransack;' -U postgres;
fi
addons:
code_climate:
repo_token: 8b701c4364d51a0217105e08c06922d600cec3d9e60d546a89e3ddfe46e0664e
2019-06-05 20:08:56 +00:00
postgresql: "9.6"