diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-08-04 19:20:30 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-08-04 19:20:30 -0700 |
commit | aff5591ee445bccef79b89557840545ba4379d2c (patch) | |
tree | 43702c0741ddcec34a1cc8aa482b860d33269875 /omnibus | |
parent | 760e8b596f2be5b4e77bd076d9fece38dba1b723 (diff) | |
download | chef-aff5591ee445bccef79b89557840545ba4379d2c.tar.gz |
Speed up our bundle installs by always running 3 jobsfaster_bundler_installs
multi-job bundle install is the default in the next release, but for now
we should make sure we set it everywhere.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'omnibus')
-rw-r--r-- | omnibus/omnibus-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/omnibus/omnibus-test.sh b/omnibus/omnibus-test.sh index d33ade448c..3117d6efb6 100644 --- a/omnibus/omnibus-test.sh +++ b/omnibus/omnibus-test.sh @@ -156,6 +156,6 @@ fi CHEF_LICENSE=accept-no-persist cd "$chef_gem" -sudo -E bundle install +sudo -E bundle install --jobs=3 --retry=3 # FIXME: we need to add back unit and integration tests here. we have no coverage of those on e.g. AIX sudo -E bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec/functional |