diff options
author | Tim Smith <tsmith@chef.io> | 2019-06-14 11:40:45 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2019-06-24 16:37:22 -0700 |
commit | a3a9cd82c764c2601323f3ac1e219241ac12ee7a (patch) | |
tree | 028e330046d76b95ee187c1bca74dfb606d2ad53 | |
parent | bf4213f3a95b10c40a5a77c800feb31d4607917e (diff) | |
download | chef-a3a9cd82c764c2601323f3ac1e219241ac12ee7a.tar.gz |
Change how we bundler install in appveyor
Specify retries and the number of jobs directly in the bundler command.
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | appveyor.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 649181b224..b7be639c1b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -41,9 +41,8 @@ install: - echo %PATH% - appveyor DownloadFile http://curl.haxx.se/ca/cacert.pem -FileName C:\cacert.pem - set SSL_CERT_FILE=C:\cacert.pem - - SET BUNDLE_WITHOUT=server:docgen:pry:integration:ci - bundle config --local path vendor/bundle # use the cache we define above - - bundle install || bundle install || bundle install + - bundle install --jobs=3 --retry=3 --without omnibus_package docgen chefstyle - SET SPEC_OPTS=--format progress - SET CHEF_LICENSE="accept-no-persist" |