2012-07-08 17:18:35 +03:00
|
|
|
language: ruby
|
|
|
|
rvm:
|
2012-12-04 02:20:28 +01:00
|
|
|
- 1.9.3
|
2013-01-09 02:51:12 +09:00
|
|
|
- 2.0.0
|
2015-01-05 22:18:45 +01:00
|
|
|
- 2.1
|
|
|
|
- 2.2
|
2014-12-10 21:11:27 +07:00
|
|
|
script: "bundle exec rake"
|
2012-07-08 17:18:35 +03:00
|
|
|
gemfile:
|
|
|
|
- Gemfile
|
2015-12-24 12:41:08 -03:00
|
|
|
before_install:
|
2015-12-24 12:49:43 -03:00
|
|
|
- gem install bundler -v 1.11.2
|
2016-04-01 01:01:22 +02:00
|
|
|
# install Neo4j locally:
|
|
|
|
- wget dist.neo4j.org/neo4j-community-2.3.3-unix.tar.gz
|
|
|
|
- tar -xzf neo4j-community-2.3.3-unix.tar.gz
|
|
|
|
- sed -i.bak s/dbms.security.auth_enabled=true/dbms.security.auth_enabled=false/g neo4j-community-2.3.3/conf/neo4j-server.properties
|
|
|
|
- neo4j-community-2.3.3/bin/neo4j start
|
2012-07-08 17:18:35 +03:00
|
|
|
before_script:
|
2012-08-05 23:22:39 -06:00
|
|
|
- mysql -e 'create database database_cleaner_test;'
|
|
|
|
- psql -c 'create database database_cleaner_test;' -U postgres
|
2012-08-05 23:09:07 -06:00
|
|
|
- cp db/sample.config.yml db/config.yml
|
2012-12-04 01:12:48 +01:00
|
|
|
services:
|
2013-12-27 10:50:10 -08:00
|
|
|
- redis-server
|
2012-12-04 02:20:28 +01:00
|
|
|
- mongodb
|