mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
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.
23 lines
517 B
YAML
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
|