This is an automated email from the git hooks/post-receive script.
boklm pushed a change to branch maint-11.0 in repository builders/tor-browser-build.
from 6ef2289 Bug 40461: Prepare stable release 11.0.12 (Android) new e5ceb15 Bug 4041: Fix syntax error in macos-signer-gatekeeper-signing new eb87754 Bug 40494: enable/disable network proxy settings on the macos signing machine
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
Summary of changes: tools/signing/do-all-signing | 10 ++++++++++ tools/signing/macos-signer-gatekeeper-signing | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-)
This is an automated email from the git hooks/post-receive script.
boklm pushed a commit to branch maint-11.0 in repository builders/tor-browser-build.
commit e5ceb1566a7aa8c491b64d4881fd459fa45ff07f Author: Richard Pospesel richard@torproject.org AuthorDate: Tue May 10 17:54:45 2022 +0000
Bug 4041: Fix syntax error in macos-signer-gatekeeper-signing --- tools/signing/macos-signer-gatekeeper-signing | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/signing/macos-signer-gatekeeper-signing b/tools/signing/macos-signer-gatekeeper-signing index 9df621f..8efc3fd 100755 --- a/tools/signing/macos-signer-gatekeeper-signing +++ b/tools/signing/macos-signer-gatekeeper-signing @@ -90,7 +90,7 @@ do check_signature $LANG 1 if [ $? -eq 1 ] then - echo Signature verification failed ($LANG). + echo "Signature verification failed (${LANG})". rm -r "Tor Browser.app" exit 1 fi
This is an automated email from the git hooks/post-receive script.
boklm pushed a commit to branch maint-11.0 in repository builders/tor-browser-build.
commit eb8775453d12cc4977d24732fae5ee01754abdd6 Author: Nicolas Vigier boklm@torproject.org AuthorDate: Tue May 10 15:38:23 2022 +0200
Bug 40494: enable/disable network proxy settings on the macos signing machine --- tools/signing/do-all-signing | 10 ++++++++++ 1 file changed, 10 insertions(+)
diff --git a/tools/signing/do-all-signing b/tools/signing/do-all-signing index ab0868c..dcf6a02 100755 --- a/tools/signing/do-all-signing +++ b/tools/signing/do-all-signing @@ -35,6 +35,10 @@ function sync-scripts-to-macos-signer { "$script_dir/sync-scripts-to-macos-signer" }
+function macos-signer-enable-network-proxy-settings { + ssh "$ssh_host_macos_signer" 'networksetup -setsecurewebproxystate Ethernet on' +} + function macos-signer-gatekeeper-signing { "$script_dir/sync-macos-local-to-macos-signer" ssh "$ssh_host_macos_signer" 'bash -s' << EOF @@ -57,6 +61,10 @@ function macos-signer-stapler { "$script_dir/sync-macos-signer-stapled-to-macos-local-stapled" }
+function macos-signer-disable-network-proxy-settings { + ssh "$ssh_host_macos_signer" 'networksetup -setsecurewebproxystate Ethernet off' +} + function gatekeeper-bundling { "$script_dir/gatekeeper-bundling.sh" } @@ -161,9 +169,11 @@ function do_step { do_step wait-for-finished-build do_step sync-builder-unsigned-to-local-signed do_step sync-scripts-to-macos-signer +do_step macos-signer-enable-network-proxy-settings do_step macos-signer-gatekeeper-signing do_step macos-signer-notarization do_step macos-signer-stapler +do_step macos-signer-disable-network-proxy-settings do_step gatekeeper-bundling do_step dmg2mar do_step sync-scripts-to-linux-signer
tbb-commits@lists.torproject.org