diff options
author | John Keiser <john@johnkeiser.com> | 2015-11-16 19:23:41 -0800 |
---|---|---|
committer | John Keiser <john@johnkeiser.com> | 2015-11-17 09:20:34 -0800 |
commit | d75e3ed39d4e0bcfe00a962bd46a4c2e870bb877 (patch) | |
tree | 410a0d1a498b8c83f87f01e7274448543c2f39b0 | |
parent | 45877e9320bd6881caafb6ab338373589b7659c8 (diff) | |
download | chef-d75e3ed39d4e0bcfe00a962bd46a4c2e870bb877.tar.gz |
Remove bundler cache so external tests will run
(the --path bundle/vendor screws up our ability to run bundle install)
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 4b1f4d06fa..55b8aa7481 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,30 +34,39 @@ matrix: gemfile: pedant.gemfile script: bundle exec rake pedant - rvm: 2.2 + cache: env: "GEMFILE_MOD=\"gem 'cheffish', github: 'chef/cheffish'\"" script: bundle exec rake cheffish_spec - rvm: 2.2 + cache: env: "GEMFILE_MOD=\"gem 'chef-provisioning', github: 'chef/chef-provisioning'\"" script: bundle exec rake chef_provisioning_spec - rvm: 2.2 + cache: env: "GEMFILE_MOD=\"gem 'chef-provisioning-aws', github: 'chef/chef-provisioning-aws'\"" script: bundle exec rake chef_provisioning_aws_spec - rvm: 2.2 + cache: env: "GEMFILE_MOD=\"gem 'chefspec'\"" script: bundle exec rake chefspec_spec - rvm: 2.2 + cache: env: "GEMFILE_MOD=\"gem 'chef-sugar'\"" script: bundle exec rake chef_sugar_spec - rvm: 2.2 + cache: env: "GEMFILE_MOD=\"gem 'chef-rewind'\"" script: bundle exec rake chef_rewind_spec - rvm: 2.2 + cache: env: "GEMFILE_MOD=\"gem 'foodcritic', github: 'acrmp/foodcritic', branch: 'v5.0.0'\"" script: bundle exec rake foodcritic_spec - rvm: 2.2 + cache: env: "GEMFILE_MOD=\"gem 'halite', github: 'poise/halite'\"" script: bundle exec rake halite_spec - rvm: 2.2 + cache: env: "GEMFILE_MOD=\"gem 'poise', github: 'poise/poise'\"" script: bundle exec rake poise_spec # Not working yet: halite |