1
0
Fork 0
mirror of https://github.com/paper-trail-gem/paper_trail.git synced 2022-11-09 11:33:19 -05:00
paper-trail-gem--paper_trail/.travis.yml

41 lines
791 B
YAML
Raw Normal View History

language: ruby
cache: bundler
2018-02-18 17:14:19 -05:00
# For ruby, we test the highest and lowest minor versions only.
2011-07-25 16:08:44 -04:00
rvm:
- 2.4
2020-01-02 09:43:51 -05:00
- 2.7
2018-02-18 17:14:19 -05:00
env:
global:
- TRAVIS=true
matrix:
- DB=mysql
- DB=postgres
- DB=sqlite
# We want to use `sudo: false` because the container infrastructure is supposed
# to be faster, but Travis is having issues with containers lately ..
#
# > No output has been received in the last 10m0s
#
# .. and they recommend we use the VM infrastructure (`sudo: required`) in
# the meantime.
sudo: required
before_install:
- gem update bundler
gemfile:
2018-03-20 11:25:13 -04:00
- gemfiles/ar_5.2.gemfile
- gemfiles/ar_6.0.gemfile
matrix:
exclude:
2019-01-01 19:14:47 -05:00
# rails 6 requires ruby >= 2.5.0
- rvm: 2.4
gemfile: gemfiles/ar_6.0.gemfile
fast_finish: true
2019-08-01 13:43:37 -04:00
services:
- mysql
- postgresql