Sha256: 1a706ed521d16b50296787feb7ba568d3bf6cfdb9f2de8c00b4ef6134dde58eb
Contents?: true
Size: 877 Bytes
Versions: 10
Compression:
Stored size: 877 Bytes
Contents
version: 2.1 jobs: build: working_directory: ~/project docker: - image: bkuhlmann/alpine-ruby:latest steps: - checkout - restore_cache: name: Gems Restore keys: - gem-cache-{{.Branch}}-{{checksum "Gemfile.lock"}} - gem-cache- - run: name: Gems Install command: | gem update --system bundle config set path "vendor/bundle" bundle install - save_cache: name: Gems Store key: gem-cache-{{.Branch}}-{{checksum "Gemfile.lock"}} paths: - vendor/bundle - run: name: Rake command: bundle exec rake <% if settings.build_simple_cov %> - store_artifacts: name: SimpleCov Report path: ~/project/coverage destination: coverage <% end %>
Version data entries
10 entries across 10 versions & 1 rubygems