diff options
author | Tim Smith <tsmith@chef.io> | 2020-11-24 11:30:22 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-24 11:30:22 -0800 |
commit | f6293d973e73501ae9a9fc8ed59d4b3135e4d689 (patch) | |
tree | d600fe018533a93341a711991f0ab9bfa7b35925 | |
parent | d9299f8a652e116be5fee646694986f101f01e91 (diff) | |
download | chef-f6293d973e73501ae9a9fc8ed59d4b3135e4d689.tar.gz |
Skip appx packaging on Windows (#10650)
Speed up our windows builds by removing appx packaging since we're not
actually using that.
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | omnibus/config/projects/chef.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/omnibus/config/projects/chef.rb b/omnibus/config/projects/chef.rb index 4dae4168d7..5a8c8e8da0 100644 --- a/omnibus/config/projects/chef.rb +++ b/omnibus/config/projects/chef.rb @@ -103,6 +103,7 @@ package :msi do ProjectLocationDir: project_location_dir end +# We don't support appx builds, and they eat a lot of time. package :appx do - signing_identity "AF21BA8C9E50AE20DA9907B6E2D4B0CC3306CA03", machine_store: true + skip_packager true end |