summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorazul <azul@riseup.net>2016-08-15 09:26:39 +0000
committerazul <azul@riseup.net>2016-08-15 09:26:39 +0000
commit1457fcdae08a1cd7e1e7b36668f826547d2c7cf6 (patch)
tree59b563bc3f10ed7d2438f6284f96478c592d3ddf /.gitlab-ci.yml
parenta1d62a3a1492ca21e1e1d2344fac88bb4d93f324 (diff)
parent75c037e5d6d8b8f2b98477bdd0359f5687bd7517 (diff)
Merge branch 'test/gitlab-ci' into 'develop'
[ci] get gitlab to run tests See merge request !2
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml17
1 files changed, 10 insertions, 7 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index df920d0..01c4103 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,7 +8,7 @@ image: "ruby:2.1"
# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-service
services:
- couchdb:1.6.1
-
+
# Cache gems in between builds
cache:
paths:
@@ -17,13 +17,16 @@ cache:
# This is a basic example for a gem or script which doesn't use
# services such as redis or postgres
before_script:
- - ruby -v # Print out ruby version for debugging
- - gem install bundler --no-ri --no-rdoc # Bundler is not installed with the image
- - bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby
- - export RAILS_ENV=test
+ - ruby -v
+ - curl -s couchdb:5984
+ - git submodule update --init
+ - cp test/config/gitlab/couchdb.yml config/couchdb.admin.yml
+ - cp test/config/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
rails:
script:
- - bundle exec rake db:rotate
- - bundle exec rake db:migrate
- bundle exec rake test