Commit e5a18cd7 authored by Mike Greiling's avatar Mike Greiling

instruct yarn to utilize the persistant .yarn-cache directory

parent 84199f19
......@@ -18,6 +18,7 @@ eslint-report.html
.sass-cache/
/.secret
/.vagrant
/.yarn-cache
/.byebug_history
/Vagrantfile
/backups/*
......
......@@ -4,6 +4,7 @@ cache:
key: "ruby-233"
paths:
- vendor/ruby
- .yarn-cache
variables:
MYSQL_ALLOW_EMPTY_PASSWORD: "1"
......@@ -186,7 +187,7 @@ setup-test-env:
stage: prepare
script:
- node --version
- yarn install --pure-lockfile
- yarn install --pure-lockfile --cache-folder .yarn-cache
- bundle exec rake gitlab:assets:compile
- bundle exec ruby -Ispec -e 'require "spec_helper" ; TestEnv.init'
artifacts:
......@@ -400,7 +401,8 @@ rake gitlab:assets:compile:
SKIP_STORAGE_VALIDATION: "true"
WEBPACK_REPORT: "true"
script:
- bundle exec rake yarn:install gitlab:assets:compile
- yarn install --pure-lockfile --production --cache-folder .yarn-cache
- bundle exec rake gitlab:assets:compile
artifacts:
name: webpack-report
expire_in: 31d
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment