Run bin/setup instead of bundler

Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
This commit is contained in:
Kenji Okimoto 2018-05-21 15:27:45 +09:00
parent df73161d4f
commit 153aee148b
2 changed files with 2 additions and 2 deletions

View File

@ -22,4 +22,4 @@ install:
- bundle -v
- gem i bundler
- sudo sh -c 'curl -L https://toolbelt.treasuredata.com/sh/install-ubuntu-trusty-td-agent2.sh | sh'
- bundle install --jobs=4 --retry=4
- bin/setup

View File

@ -15,7 +15,7 @@ chdir APP_ROOT do
puts '== Installing dependencies =='
system! 'gem install bundler --conservative'
system('bundle check') || system!('bundle install')
system('bundle check') || system!('bundle install --jobs=4 --retry=4')
# Install JavaScript dependencies if using Yarn
system('bin/yarn')