Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.gitlab-ci.yml « attr_encrypted « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d954de43a004a75e57a73cb1b0b0c82a63ca675 (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
workflow:
  rules:
    - if: $CI_MERGE_REQUEST_ID

default:
  image: "ruby:${RUBY_VERSION}"

rspec:
  cache:
    key: attr_encrypted-ruby
    paths:
      - vendor/gems/attr_encrypted/vendor/ruby
  before_script:
    - cd vendor/gems/attr_encrypted
    - ruby -v # Print out ruby version for debugging
    - gem install bundler --no-document         # Bundler is not installed with the image
    - bundle config set --local path 'vendor'   # Install dependencies into ./vendor/ruby
    - bundle config set with 'development'      # This is set to 'deployment' otherwise
    - bundle config set --local frozen 'true'   # Disallow Gemfile.lock changes on CI
    - bundle config                             # Show bundler configuration
    - bundle install -j $(nproc)
  script:
    - bundle exec rake test
  parallel:
    matrix:
      - RUBY_VERSION: ["2.7", "3.0", "3.1"]