Skip to content
Snippets Groups Projects
Commit ae1f6fb1 authored by Andrey Lihatskiy's avatar Andrey Lihatskiy Committed by Nat Goodspeed
Browse files

SL-16630 Notarization script update

(cherry picked from commit 5fcb811a)
parent 1de684a8
No related branches found
No related tags found
No related merge requests found
...@@ -5,12 +5,12 @@ if [[ $SKIP_NOTARIZATION == "true" ]]; then ...@@ -5,12 +5,12 @@ if [[ $SKIP_NOTARIZATION == "true" ]]; then
fi fi
CONFIG_FILE="$build_secrets_checkout/code-signing-osx/notarize_creds.sh" CONFIG_FILE="$build_secrets_checkout/code-signing-osx/notarize_creds.sh"
if [ -f "$CONFIG_FILE" ]; then if [[ -f "$CONFIG_FILE" ]]; then
source $CONFIG_FILE source "$CONFIG_FILE"
app_file="$1" app_file="$1"
zip_file=${app_file/app/zip} zip_file=${app_file/app/zip}
ditto -c -k --keepParent "$app_file" "$zip_file" ditto -c -k --keepParent "$app_file" "$zip_file"
if [ -f "$zip_file" ]; then if [[ -f "$zip_file" ]]; then
res=$(xcrun altool --notarize-app --primary-bundle-id "com.secondlife.viewer" \ res=$(xcrun altool --notarize-app --primary-bundle-id "com.secondlife.viewer" \
--username $USERNAME \ --username $USERNAME \
--password $PASSWORD \ --password $PASSWORD \
...@@ -19,37 +19,39 @@ if [ -f "$CONFIG_FILE" ]; then ...@@ -19,37 +19,39 @@ if [ -f "$CONFIG_FILE" ]; then
echo $res echo $res
requestUUID=$(echo $res | awk '/RequestUUID/ { print $NF; }') requestUUID=$(echo $res | awk '/RequestUUID/ { print $NF; }')
echo "Apple Notarization RequestUUID: $requestUUID"
if [[ -n $requestUUID ]]; then if [[ -n $requestUUID ]]; then
status="in progress" in_progress=1
while [[ "$status" == "in progress" ]]; do while [[ $in_progress -eq 1 ]]; do
sleep 30 sleep 30
status=$(xcrun altool --notarization-info "$requestUUID" \ res=$(xcrun altool --notarization-info "$requestUUID" \
--username $USERNAME \ --username $USERNAME \
--password $PASSWORD 2>&1 \ --password $PASSWORD 2>&1)
| awk -F ': ' '/Status:/ { print $2; }' ) if [[ $res != *"in progress"* ]]; then
echo "$status" in_progress=0
fi
echo "."
done done
# log results # log results
xcrun altool --notarization-info "$requestUUID" \ echo $res
--username $USERNAME \
--password $PASSWORD
#remove temporary file #remove temporary file
rm "$zip_file" rm "$zip_file"
if [["$status" == "success"]]; then if [[ $res == *"success"* ]]; then
xcrun stapler staple "$app_file" xcrun stapler staple "$app_file"
elif [["$status" == "invalid"]]; then exit 0
elif [[ $res == *"invalid"* ]]; then
echo "Notarization error: failed to process the app file" echo "Notarization error: failed to process the app file"
exit 1 exit 1
else
echo "Notarization error: unknown response status"
fi fi
else else
echo "Notarization error: couldn't get request UUID" echo "Notarization error: couldn't get request UUID"
echo $res
exit 1 exit 1
fi fi
else
echo "Notarization error: ditto failed"
exit 1
fi fi
fi fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment