From a1c5523ee73fb9cea276c3bf69242b3201dcfca5 Mon Sep 17 00:00:00 2001 From: Wes Haggard Date: Mon, 20 Nov 2023 16:13:12 -0800 Subject: [PATCH] Disable symbol publishing for tool (#7325) This tool contains native binaries that cause symbol publishing to fail so disable the symbols for this tool package I've tried to update the symbol publishing tool but it doesn't like the native 3rd party *.so files and the symbols for our internal tools aren't that interesting so just disabling the publishing for this tool. --- tools/secret-management/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/secret-management/ci.yml b/tools/secret-management/ci.yml index e1fd3c72137..a8dff0c2207 100644 --- a/tools/secret-management/ci.yml +++ b/tools/secret-management/ci.yml @@ -27,3 +27,5 @@ extends: ToolDirectory: tools/secret-management # Sodium.Core dependency is not strong name signed. Skip validation in order to sign secret cli. RequireStrongNames: false + # This tool contains native binaries that cause sybmol publishing to fail so disable the symbols for this tool package + ShouldPublishSymbols: false