Improve GitLab Pages build speed

This commit is contained in:
rubenwardy 2020-08-18 23:43:31 +01:00
parent acdc71b34f
commit 62e2d0f835

View File

@ -1,15 +1,15 @@
image: ruby:2.6 image: jekyll/jekyll:4
variables: variables:
JEKYLL_ENV: production JEKYLL_ENV: production
LC_ALL: C.UTF-8 LC_ALL: C.UTF-8
before_script: before_script:
- gem install bundler jekyll - rm Gemfile.lock
- bundle install
test: test:
stage: test stage: test
interruptible: true
script: script:
- bundle exec jekyll build -d test - bundle exec jekyll build -d test
artifacts: artifacts:
@ -20,6 +20,9 @@ test:
pages: pages:
stage: deploy stage: deploy
interruptible: true
before_script:
- rm Gemfile.lock
script: script:
- bundle exec jekyll build -d public - bundle exec jekyll build -d public
artifacts: artifacts: