[Bf-blender-cvs] [adb6be36e49] master: Buildbot: Correct timestamp argument for Windows codesign

Sergey Sharybin noreply at git.blender.org
Tue Dec 3 14:41:52 CET 2019


Commit: adb6be36e496262380eae2611f695b967ffce0f2
Author: Sergey Sharybin
Date:   Tue Dec 3 14:39:53 2019 +0100
Branches: master
https://developer.blender.org/rBadb6be36e496262380eae2611f695b967ffce0f2

Buildbot: Correct timestamp argument for Windows codesign

The current authority we use RFC 3161 time stamp server,
so need to pass different command line argument.

===================================================================

M	build_files/buildbot/codesign/windows_code_signer.py

===================================================================

diff --git a/build_files/buildbot/codesign/windows_code_signer.py b/build_files/buildbot/codesign/windows_code_signer.py
index 9481b66ee1e..638f098d8bc 100644
--- a/build_files/buildbot/codesign/windows_code_signer.py
+++ b/build_files/buildbot/codesign/windows_code_signer.py
@@ -53,7 +53,7 @@ class WindowsCodeSigner(BaseCodeSigner):
         return [
             'signtool', 'sign', '/v',
             '/f', self.config.CERTIFICATE_FILEPATH,
-            '/t', self.config.TIMESTAMP_AUTHORITY_URL]
+            '/tr', self.config.TIMESTAMP_AUTHORITY_URL]
 
     def sign_all_files(self, files: List[AbsoluteAndRelativeFileName]) -> None:
         # NOTE: Sign files one by one to avoid possible command line length



More information about the Bf-blender-cvs mailing list