setting path as bundler config

This commit is contained in:
HoneyryderChuck 2019-12-30 02:45:00 +00:00
parent c73d6ff3d9
commit 386765f003

View File

@ -13,7 +13,9 @@ fi
export PATH=$GEM_HOME/bin:$BUNDLE_PATH/gems/bin:$PATH
mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
gem install bundler -v="1.17.3" --no-doc --conservative
cd /home && bundle install --jobs 4 --path vendor && \
cd /home && \
bundle config set path 'vendor' && \
bundle install --jobs 4 && \
bundle exec rake test:ci
RET=$?