Mercurial > hg > sonic-annotator
view deploy/osx/notarize.sh @ 390:e09fa9a3686f
Bump date again. Realistically, this isn't happening today
author | Chris Cannam |
---|---|
date | Mon, 08 Jun 2020 17:12:22 +0100 |
parents | 78af557445b2 |
children |
line wrap: on
line source
#!/bin/bash ## The following assumes we have generated an app password at ## appleid.apple.com and then stored it to keychain id "altool" using ## e.g. ## security add-generic-password -a "cannam+apple@all-day-breakfast.com" \ ## -w "generated-app-password" -s "altool" user="cannam+apple@all-day-breakfast.com" bundleid="org.sonicvisualiser.SonicAnnotator" set -e exe="$1" if [ ! -f "$exe" ] || [ -n "$2" ]; then echo "Usage: $0 <executable>" echo " e.g. $0 my-program" exit 2 fi set -u echo echo "Uploading for notarization..." uuidfile=.notarization-uuid statfile=.notarization-status rm -f "$uuidfile" "$statfile" rm -f bundle.zip rm -rf bundle mkdir bundle cp "$exe" bundle/ ditto -c -k bundle bundle.zip xcrun altool --notarize-app \ -f "bundle.zip" \ --primary-bundle-id "$bundleid" \ -u "$user" \ -p @keychain:altool 2>&1 | tee "$uuidfile" uuid=$(cat "$uuidfile" | grep RequestUUID | awk '{ print $3; }') if [ -z "$uuid" ]; then echo echo "Failed (no UUID returned, check output)" exit 1 fi echo "Done, UUID is $uuid" echo echo "Waiting and checking for completion..." while true ; do sleep 30 xcrun altool --notarization-info \ "$uuid" \ -u "$user" \ -p @keychain:altool 2>&1 | tee "$statfile" if grep -q 'Package Approved' "$statfile"; then echo echo "Approved! Status output is:" cat "$statfile" break elif grep -q 'in progress' "$statfile" ; then echo echo "Still in progress... Status output is:" cat "$statfile" echo "Waiting..." else echo echo "Failure or unknown status in output:" cat "$statfile" exit 2 fi done echo echo "Done, not stapling as just an executable"