comparison deploy/osx/build-and-package.sh @ 123:ddcb0e606d28 v1.0

Include get-version in build process
author Chris Cannam
date Fri, 15 May 2020 17:33:29 +0100
parents bf0fc15c3e21
children
comparison
equal deleted inserted replaced
122:decfb0bb370b 123:ddcb0e606d28
61 echo 61 echo
62 echo "Building plugins..." 62 echo "Building plugins..."
63 make -j3 -f Makefile.plugins 63 make -j3 -f Makefile.plugins
64 echo "Done" 64 echo "Done"
65 65
66 echo
67 echo "Building get-version..."
68 make -j3 -f Makefile.get-version
69 echo "Done"
70
66 echo 71 echo
67 echo "Signing plugins..." 72 echo "Signing plugins and get-version..."
68 codesign -s "$identity" -fv --timestamp --options runtime out/*.dylib 73 codesign -s "$identity" -fv --timestamp --options runtime out/*.dylib out/get-version
69 echo "Done" 74 echo "Done"
70 75
71 if [ "$notarize" = no ]; then 76 if [ "$notarize" = no ]; then
72 echo 77 echo
73 echo "The --no-notarization flag was set: not submitting for notarization" 78 echo "The --no-notarization flag was set: not submitting for notarization"
74 else 79 else
75 echo 80 echo
76 echo "Notarizing plugins..." 81 echo "Notarizing plugins and get-version..."
77 rm -f plugins.zip 82 rm -f plugins.zip
78 ditto -c -k out plugins.zip 83 ditto -c -k out plugins.zip
79 deploy/osx/notarize.sh plugins.zip 84 deploy/osx/notarize.sh plugins.zip
80 echo "Done" 85 echo "Done"
81 86