Sha256: 1c3771e1779bf0795de5377b3663368bae9406d60ff29a5a6bd23ef6ac7ac7a3

Contents?: true

Size: 710 Bytes

Versions: 3

Compression:

Stored size: 710 Bytes

Contents

# Cache gems in between builds

.test-template: &test
  cache:
    paths:
      - vendor/ruby
  script:
  - bundle exec rspec spec
  before_script:
    - apt update && apt install -y libicu-dev
    - ruby -v                                   # Print out ruby version for debugging
    # Uncomment next line if your rails app needs a JS runtime:
    # - apt-get update -q && apt-get install nodejs -yqq
    - gem install bundler  --no-document    # Bundler is not installed with the image
    - bundle install -j $(nproc) --path vendor  # Install dependencies into ./vendor/ruby

rspec-2.4:
  image: "ruby:2.4"
  <<: *test

rspec-2.5:
  image: "ruby:2.5"
  <<: *test

rspec-2.6:
  image: "ruby:2.6"
  <<: *test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gitlab-mail_room-0.0.4 .gitlab-ci.yml
gitlab-mail_room-0.0.3 .gitlab-ci.yml
gitlab-mail_room-0.0.2 .gitlab-ci.yml