more automated build stuff
authorPaul Davis <paul@linuxaudiosystems.com>
Mon, 21 Mar 2011 19:55:06 +0000 (19:55 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Mon, 21 Mar 2011 19:55:06 +0000 (19:55 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@9179 d708f5d6-7413-0410-9779-e7cbd77b26cf

tools/linux_packaging/noderun
tools/linux_packaging/run

index 99eeb04d01f7330dce95138d94affe0c2a25e007..6aeeaa583a6e2851a8fa79ff17e002a62917523b 100644 (file)
@@ -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
index 62c000b4a5f8aecd545d5bcb15004fc563910832..2f3b1587c820e9b6306be5407cce9cea4e730555 100644 (file)
@@ -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