blob: a8efd0b4c4268cc3830cd0084890fa79c86d5a70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
ruby2-1:
image: "ruby:2.1"
script:
- bundle exec rake test
ruby2-3:
image: "ruby:2.3"
script:
- bundle exec rake test
services:
- couchdb:1.6.1
# Cache gems in between builds
cache:
key: shared
paths:
- vendor/ruby
before_script:
- ruby -v
- curl -s couchdb:5984
- git submodule update --init
- cp config/ci/gitlab/couchdb.yml config/couchdb.admin.yml
- cp config/ci/gitlab/couchdb.yml config
- gem install bundler --no-ri --no-rdoc
- bundle install -j $(nproc) --path vendor --without development debug
- bundle exec rake RAILS_ENV=test db:rotate
- bundle exec rake RAILS_ENV=test db:migrate
|