summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneha-p6 <neha.pansare@progress.com>2022-10-19 01:25:59 +0530
committerGitHub <noreply@github.com>2022-10-18 12:55:59 -0700
commitf01173f93e45aad2f7f9642ce6878f3900020829 (patch)
tree626031faa4e29fdda5a7bdbe6f84d23cf7960689
parent9eccdc90d00a3e5221e877a18ac408132e325a28 (diff)
downloadchef-f01173f93e45aad2f7f9642ce6878f3900020829.tar.gz
Fix windows build failures in adhoc pipeline throwing error 'SignTool Error: No certificates were found that met all the given criteria' by updating the msi (#13241)
Signed-off-by: Neha Pansare <neha.pansare@progress.com>
-rw-r--r--omnibus/config/projects/chef.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/omnibus/config/projects/chef.rb b/omnibus/config/projects/chef.rb
index 5a8c8e8da0..6022f40443 100644
--- a/omnibus/config/projects/chef.rb
+++ b/omnibus/config/projects/chef.rb
@@ -98,7 +98,8 @@ package :msi do
upgrade_code msi_upgrade_code
wix_candle_extension "WixUtilExtension"
wix_light_extension "WixUtilExtension"
- signing_identity "AF21BA8C9E50AE20DA9907B6E2D4B0CC3306CA03", machine_store: true
+ # Update this if you start getting a "SignTool Error: No certificates were found that met all the given criteria." error in adhoc builds
+ signing_identity "13B510D1CF1B3467856A064F1BEA12D0884D2528", machine_store: true
parameters ChefLogDllPath: windows_safe_path(gem_path("chef-[0-9]*-mingw32/ext/win32-eventlog/chef-log.dll")),
ProjectLocationDir: project_location_dir
end