This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch master in repository tor-browser-spec.
The following commit(s) were added to refs/heads/master by this push: new f3f6f08 Bug 40032: Mention enabling/disabling networking on the `macos-signer` f3f6f08 is described below
commit f3f6f08381fcaaed555b97f31f891e9e5d37e0f2 Author: Nicolas Vigier boklm@torproject.org AuthorDate: Tue May 10 15:50:33 2022 +0200
Bug 40032: Mention enabling/disabling networking on the `macos-signer`
We also add that the `do-all-signing` script currently does not run `./macos-signer-proxy`. --- processes/ReleaseProcess | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/processes/ReleaseProcess b/processes/ReleaseProcess index a91929b..82c7bfa 100644 --- a/processes/ReleaseProcess +++ b/processes/ReleaseProcess @@ -81,7 +81,8 @@ # do all the signing steps automatically, until the static-update-component # commands on staticiforme. Also the script does not currently handle # removing the old versions on staticiforme, so you have to do that -# manually. +# manually. The script is also not running `./macos-signer-proxy` which +# needs to be started and stopped manually.
#. Checkout the tor-browser-build.git commit corresponding to the # tor browser version you need to sign/publish. @@ -119,6 +120,9 @@ # process on `macos-signer` if it was still running. ./macos-signer-proxy
+# Enable networking on the `macos-signer`. + macos-signer$ networksetup -setsecurewebproxystate Ethernet on + # Sign the bundles. On `macos-signer`. # (replace signing-release with signing-alpha for an alpha release) macos-signer$ ~/signing-release/macos-signer-gatekeeper-signing @@ -131,6 +135,9 @@ # (replace signing-release with signing-alpha for an alpha release) macos-signer$ ~/signing-release/macos-signer-stapler
+# Disable networking on the `macos-signer`. + macos-signer$ networksetup -setsocksfirewallproxystate Ethernet off + # Download the stapled bundles to `pkgstage`. ./sync-macos-signer-stapled-to-macos-local-stapled
tor-commits@lists.torproject.org