From 7bf9dae4c5cbc2538f8ef66b0e8a7be5ef16b818 Mon Sep 17 00:00:00 2001 From: Azul Date: Wed, 22 Mar 2017 10:51:43 +0100 Subject: test: also test ruby 2.3 --- .gitlab-ci.yml | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 232ebcb..a8efd0b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,13 @@ -# This file is a template, and might need editing before it works on your project. -# Official language image. Look for the different tagged releases at: -# https://hub.docker.com/r/library/ruby/tags/ -image: "ruby:2.1" +ruby2-1: + image: "ruby:2.1" + script: + - bundle exec rake test + +ruby2-3: + image: "ruby:2.3" + script: + - bundle exec rake test -# Pick zero or more services to be used on all builds. -# Only needed when using a docker container to run your tests in. -# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-service services: - couchdb:1.6.1 @@ -15,8 +17,6 @@ cache: paths: - vendor/ruby -# This is a basic example for a gem or script which doesn't use -# services such as redis or postgres before_script: - ruby -v - curl -s couchdb:5984 @@ -27,7 +27,3 @@ before_script: - 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 test -- cgit v1.2.3