25 lines
301 B
YAML
25 lines
301 B
YAML
language: ruby
|
|
|
|
sudo: false
|
|
|
|
rvm: 2.1.5
|
|
|
|
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 --trace'
|
|
|
|
script:
|
|
- bundle exec rspec spec
|