summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-03-21 19:55:06 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-03-21 19:55:06 +0000
commitda52e3fb4e25cb3e98937bd58372c220de8915ee (patch)
treeb1ce3c9eddb75f6e04ea70534104b6f57c760a4b
parent315c1d5a4704ecbc3b24fce1c30d04fc2d252c07 (diff)
more automated build stuff
git-svn-id: svn://localhost/ardour2/branches/3.0@9179 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--tools/linux_packaging/noderun2
-rw-r--r--tools/linux_packaging/run7
2 files changed, 6 insertions, 3 deletions
diff --git a/tools/linux_packaging/noderun b/tools/linux_packaging/noderun
index 99eeb04d01..6aeeaa583a 100644
--- a/tools/linux_packaging/noderun
+++ b/tools/linux_packaging/noderun
@@ -6,6 +6,8 @@ if [ x$BASE = "x" ] ; then
exit 1
fi
+echo "Hello, world!"
+
cd $BASE || exit 1
svn update || exit 1
./waf configure --strict --noconfirm || exit 1
diff --git a/tools/linux_packaging/run b/tools/linux_packaging/run
index 62c000b4a5..2f3b1587c8 100644
--- a/tools/linux_packaging/run
+++ b/tools/linux_packaging/run
@@ -6,11 +6,12 @@ tooldir=$basedir/tools/linux_packaging
u=harrison
p=harrison
-
-
for VM in Build_64bit_804s ; do
$vbm startvm $VM --type headless
- $vbm guestcontrol exec $VM $tooldir/noderun $basedir --username $u --password $p --wait-for stdout
+ echo "Waiting for guest control to be available (12 seconds) ... "
+ sleep 12
+ echo "Running $tooldir/noderun $basedir on $VM ... "
+ $vbm guestcontrol exec $VM /bin/sh --arguments $tooldir/noderun --arguments $basedir --username $u --password $p --wait-for stdout
status=$?
$vbm controlvm $VM savestate
done