Skip to content
Snippets Groups Projects
Commit dc4f5112 authored by Gabriel Mazetto's avatar Gabriel Mazetto
Browse files

GitLab CI support

parent 7b56e8c0
No related branches found
No related tags found
1 merge request!1GitLab CI support
Pipeline #
.specs: &specs
cache:
paths:
- vendor/ruby
before_script:
# install dependent gems:
- bundle install
script:
- bundle exec rake spec
ruby-187:
image: "jonwood/ruby-1.8"
allow_failure: true
<<: *specs
before_script:
- gem install bundler
- apt-get update && apt-get install git-core build-essential -y
- bundle install
ruby-193:
image: "zedtux/ruby-1.9.3"
allow_failure: true
<<: *specs
before_script:
- gem install bundler
- apt-get update && apt-get install git-core build-essential -y
- bundle install
ruby-20:
image: ruby:2.0
allow_failure: true
<<: *specs
ruby-21:
image: ruby:2.1
<<: *specs
ruby-22:
image: ruby:2.2
<<: *specs
ruby-23:
image: ruby:2.3
<<: *specs
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment