Mercurial > hg > sonic-visualiser
view deploy/linux/build-and-test-appimage.sh @ 2265:d33dff02b39b sandbox-notarize
Work on sandboxing (possibly) and using the hardened runtime for notarization. Supply appropriate bundle ID for helpers as well as main application, and request inherited sandbox entitlements. Currently works with sandboxing (apparently) but not yet with the hardened runtime, where we can't load plugins signed by third parties even with the com.apple.security.cs.disable-library-validation entitlement because their team IDs don't match the host. Possibly that exception is supposed to be requested some other way?
author | Chris Cannam |
---|---|
date | Thu, 25 Apr 2019 16:46:02 +0100 |
parents | 3a4202cae7fe |
children | 6845d7dafebf |
line wrap: on
line source
#!/bin/bash # # Docker required set -eu current=$(hg id | awk '{ print $1; }') case "$current" in *+) echo "ERROR: Current working copy has been modified - unmodified copy required so we know we can check it out separately and obtain the same contents"; exit 2;; *);; esac echo echo "Building appimage from revision $current..." dockerdir=deploy/linux/docker cat "$dockerdir"/Dockerfile_appimage.in | \ perl -p -e "s/\[\[REVISION\]\]/$current/g" > \ "$dockerdir"/Dockerfile_appimage.gen cat "$dockerdir"/Dockerfile_test_appimage.in | \ perl -p -e "s/\[\[REVISION\]\]/$current/g" > \ "$dockerdir"/Dockerfile_test_appimage.gen grep '^bitbucket.org' ~/.ssh/known_hosts > "$dockerdir"/known_hosts cp ~/.ssh/id_dsa_build "$dockerdir"/id_dsa_build chmod 600 "$dockerdir"/known_hosts "$dockerdir"/id_dsa_build trap "rm $dockerdir/known_hosts $dockerdir/id_dsa_build" 0 dockertag="cannam/sonic-visualiser-appimage-$current" sudo docker build -t "$dockertag" -f "$dockerdir"/Dockerfile_appimage.gen "$dockerdir" outdir="$dockerdir/output" mkdir -p "$outdir" container=$(sudo docker create "$dockertag") sudo docker cp "$container":output-appimage.tar "$outdir" sudo docker rm "$container" ( cd "$outdir" ; tar xf output-appimage.tar && rm -f output-appimage.tar ) sudo docker build -f "$dockerdir"/Dockerfile_test_appimage.gen "$dockerdir"