annotate deploy/src/archive.sh @ 1866:65d244ee39f9

Experimentally add a rule to re-run Repoint if the project or lock file is newer than the .repoint.point file. This sort of thing isn't sufficient for all uses of Repoint because some of the initial qmake project file info is brought in by Repoint, so it has to be run before qmake as well. Also it's not clear yet how it will interact with archived builds (i.e. source releases) -- to be tested.
author Chris Cannam
date Tue, 19 Jun 2018 15:03:24 +0100
parents bd14a0f69b60
children 471b0fb002ea
rev   line source
Chris@654 1 #!/bin/bash
Chris@654 2
Chris@1158 3 set -eu
Chris@1158 4
Chris@654 5 tag=`hg tags | grep '^sv_v' | head -1 | awk '{ print $1; }'`
Chris@654 6
Chris@1158 7 v=`echo "$tag" | sed 's/sv_v//' | sed 's/_.*$//'`
Chris@654 8
Chris@1158 9 echo
Chris@1158 10 echo -n "Packaging up version $v from tag $tag... "
Chris@654 11
Chris@654 12 hg archive -r"$tag" --subrepos --exclude sv-dependency-builds /tmp/sonic-visualiser-"$v".tar.gz
Chris@654 13
Chris@1158 14 echo Done
Chris@1158 15 echo
Chris@1158 16
Chris@1158 17 # Test that the appropriate version of the docs exist on the website
Chris@1158 18
Chris@1158 19 doc_url="http://sonicvisualiser.org/doc/reference/$v/en/"
Chris@1158 20 doc_status=$(curl -sL -w "%{http_code}" "$doc_url" -o /dev/null)
Chris@1158 21
Chris@1158 22 if [ "$doc_status" = "404" ]; then
Chris@1158 23 echo "*** WARNING: Documentation URL returns a 404:"
Chris@1158 24 echo "*** $doc_url"
Chris@1158 25 echo "*** Please fix this before release!"
Chris@1771 26 echo "*** And remember to update the link from"
Chris@1771 27 echo " http://www.sonicvisualiser.org/documentation.html !"
Chris@1158 28 echo
Chris@1158 29 fi