diff options
author | Tim Smith <tsmith@chef.io> | 2018-12-19 17:02:26 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-12-19 19:54:37 -0800 |
commit | 0a646d6962430148546a559df8a89a97fd90a3f0 (patch) | |
tree | d78f8b588459a8f026fd2b6dc3aa709b5ff59a97 | |
parent | 8d7b0ce2b35bcad4e0a77ba435063849d78a72a5 (diff) | |
download | chef-omnibus_cache_off_14.tar.gz |
Disable git omnibus cacheomnibus_cache_off_14
This has caused a ton of random issues where builders start pulling in
cache from other branches. Every time we get in this state we just
rebuild without the cache and all is fine again. It seems like we should
just disable it at this point since we run builds on 2 branches at the
same time now.
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | omnibus/omnibus.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/omnibus/omnibus.rb b/omnibus/omnibus.rb index dfbd2bc338..5f7c3f6eba 100644 --- a/omnibus/omnibus.rb +++ b/omnibus/omnibus.rb @@ -32,8 +32,11 @@ env_omnibus_windows_arch = :x86 unless %w{x86 x64}.include?(env_omnibus_windows_ windows_arch env_omnibus_windows_arch # Disable git caching +# caching is currently disabled as it causes issues when we're running +# builds of different product versions on the same host. When forked to prep +# for the next major release this has caused problems. To enable again: # ------------------------------ -# use_git_caching false +use_git_caching false # Enable S3 asset caching # ------------------------------ |