tracks/.travis.yml
Matt Rogers efff146b91 Be less specific about the Ruby 2.0 version to test
Travis complains about not being able to find Ruby 2.0.0-p598. Let's see what
happens if we're a little bit less specific.
2018-01-08 19:00:41 -08:00

23 lines
517 B
YAML

language: ruby
sudo: false
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2
addons:
firefox: 45.8.0esr
env:
- DATABASE_URL=mysql2://localhost/tracks_test
- DATABASE_URL=sqlite3:db/test.sqlite3
bundler_args: --with sqlite --with mysql --without development --jobs=3 --retry=3
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "cp config/site.yml.tmpl config/site.yml"
script: script/cibuild
notifications:
email: false
irc:
channels: "chat.freenode.net#tracks"
skip_join: true