summaryrefslogtreecommitdiff
path: root/indra/newview/installers/darwin/apple-notarize.sh
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2021-04-29 04:57:05 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2021-04-29 04:57:05 +0300
commitbd4ad276c0aec58a8852b848c190bd4b67e238f3 (patch)
treec3e5c76fac600752a5d7e7a5ade4f7f954750aef /indra/newview/installers/darwin/apple-notarize.sh
parent0c13a8d08f505a1e8a8f48b7436f78b91d16a2fc (diff)
DRTVWR-520 Notarize the viewer on TeamCity
Diffstat (limited to 'indra/newview/installers/darwin/apple-notarize.sh')
-rw-r--r--indra/newview/installers/darwin/apple-notarize.sh42
1 files changed, 42 insertions, 0 deletions
diff --git a/indra/newview/installers/darwin/apple-notarize.sh b/indra/newview/installers/darwin/apple-notarize.sh
new file mode 100644
index 0000000000..a590f52e38
--- /dev/null
+++ b/indra/newview/installers/darwin/apple-notarize.sh
@@ -0,0 +1,42 @@
+#!/bin/sh
+​
+CONFIG_FILE="$build_secrets_checkout/code-signing-osx/notarize_creds.sh"
+if [ -f "$CONFIG_FILE" ]; then
+ source $CONFIG_FILE
+
+ app_file="$1"
+ zip_file=${app_file/app/zip}
+ ditto -c -k --keepParent "$app_file" "$zip_file"
+ ​
+ ​
+ requestUUID=$(xcrun altool --notarize-app --primary-bundle-id "com.secondlife.viewer" \
+ --username $USERNAME \
+ --password $PASSWORD \
+ --asc-provider $ASC_PROVIDER \
+ --file "$zip_file" 2>&1 \
+ | awk '/RequestUUID/ { print $NF; }')
+ ​
+ echo "Apple Notarization RequestUUID: $requestUUID"
+ ​
+ if [[ -n $requestUUID ]]; then
+ status="in progress"
+ while [[ "$status" == "in progress" ]]; do
+ sleep 30
+ status=$(xcrun altool --notarization-info "$requestUUID" \
+ --username $USERNAME \
+ --password $PASSWORD 2>&1 \
+ | awk -F ': ' '/Status:/ { print $2; }' )
+ echo "$status"
+ done
+ ​
+ # log results
+ xcrun altool --notarization-info "$requestUUID" \
+ --username $USERNAME \
+ --password $PASSWORD
+
+ if [["$status" == "success"]]; then
+ xcrun stapler staple "$app_file"
+ fi
+ fi
+fi
+