diff --git a/.travis.yml b/.travis.yml index d1468c8ee..4324b254b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -56,7 +56,7 @@ script: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - bundle config set path 'vendor/bundle' - - bundle install --local --jobs=2 + - bin/ci-bundle - yarn install --frozen-lockfile - bundle exec rails db:create - bundle exec rails webpacker:compile diff --git a/bin/ci-bundle b/bin/ci-bundle new file mode 100755 index 000000000..befe2a5fb --- /dev/null +++ b/bin/ci-bundle @@ -0,0 +1,2 @@ +#!/bin/bash +bundle install --local --jobs 3