Enabled bundler multicore support (#529)
This commit is contained in:
parent
a5c81841ec
commit
acaea9251f
|
@ -153,7 +153,7 @@ git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1)
|
||||||
# Install bundler
|
# Install bundler
|
||||||
gem install bundler
|
gem install bundler
|
||||||
# Use bundler to install the rest of the Ruby dependencies
|
# Use bundler to install the rest of the Ruby dependencies
|
||||||
bundle install --deployment --without development test
|
bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without development test
|
||||||
# Use yarn to install node.js dependencies
|
# Use yarn to install node.js dependencies
|
||||||
yarn install --pure-lockfile
|
yarn install --pure-lockfile
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue