diff options
author | Tim Smith <tsmith@chef.io> | 2019-06-24 23:36:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-24 23:36:53 -0700 |
commit | aaea1f2956591f14912237c26db116d13c2ffc99 (patch) | |
tree | 6d57e415ed8fb4f038f1f1667251860192c9b709 | |
parent | 5508093137d187f76ade9af0dacca451b99c9728 (diff) | |
parent | a3a9cd82c764c2601323f3ac1e219241ac12ee7a (diff) | |
download | chef-aaea1f2956591f14912237c26db116d13c2ffc99.tar.gz |
Merge pull request #8663 from chef/appveyor
Improve how we bundler install in appveyor
-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" |