18 lines
311 B
YAML
18 lines
311 B
YAML
language: ruby
|
|
sudo: false
|
|
rvm:
|
|
- 2.1.4
|
|
env:
|
|
global:
|
|
- RUBY_GC_MALLOC_LIMIT=90000000
|
|
- RUBY_GC_HEAP_FREE_SLOTS=200000
|
|
cache: bundler
|
|
addons:
|
|
postgresql: 9.3
|
|
services:
|
|
- redis
|
|
before_script:
|
|
- 'RAILS_ENV=test bundle exec rake db:create db:migrate --trace'
|
|
notifications:
|
|
irc: "irc.freenode.org#travis"
|