Skip to content
Snippets Groups Projects

Cache bundle files in order to speed up page generation

Merged François Bobot requested to merge feature/bundle-cache into master
1 file
+ 7
1
Compare changes
  • Side-by-side
  • Inline
+ 7
1
@@ -6,9 +6,15 @@ image: ruby:2.4
variables:
JEKYLL_ENV: production
# Cache gems in between builds
cache:
paths:
- vendor/ruby
before_script:
- ruby -v # Print out ruby version for debugging
- gem install bundler -v '2.0.2'
- bundle install
- bundle install -j $(nproc) --path vendor
test:
stage: test
Loading