annotate deploy/src/archive-tip.sh @ 2153:f57b0eea9201

Remove LTO again. It makes linking very slow, I'm not noticing any practical difference in performance, it doesn't work correctly on Travis image etc, and it sometimes breaks in incremental builds.
author Chris Cannam
date Thu, 06 Dec 2018 09:55:36 +0000
parents b578440bbca6
children 7535f13569fa
rev   line source
Chris@718 1 #!/bin/bash
Chris@718 2
Chris@1868 3 id=`hg id | awk '{ print $1; }'`
Chris@718 4
Chris@1868 5 case "$id" in
Chris@1868 6 *+) echo "ERROR: Current working copy has been modified - unmodified copy required"; exit 2;;
Chris@1868 7 *);;
Chris@1868 8 esac
Chris@718 9
Chris@1868 10 echo "Packaging from id $id..."
Chris@718 11
Chris@1868 12 hg update -r"$id"
Chris@1868 13
Chris@1869 14 ./repoint archive /tmp/sonic-visualiser-"$id".tar.gz --exclude sv-dependency-builds repoint.pri
Chris@1868 15
Chris@1868 16 echo Done
Chris@1868 17 echo
Chris@1868 18