fix serious breakage with setup of plugin automatable controls/parameters, in which...
[ardour2.git] / tools / linux_packaging / run
blob23bd0149dfbf81aae19f9343e5ec09cda32dec4e
1 #!/bin/sh
3 vbm=VBoxManage
4 basedir=/home/harrison/ardour/3.0
5 tooldir=$basedir/tools/linux_packaging
6 u=harrison
7 p=harrison
9 for VM in Build_32bit_804s Build_64bit_804s ; do
10 $vbm startvm $VM --type headless
11 echo "$VM: Waiting for guest control to be available (12 seconds) ... "
12 sleep 12
13 echo "$VM: Running $tooldir/noderun $basedir on $VM ... "
14 $vbm guestcontrol exec $VM /bin/sh \
15 --arguments $tooldir/noderun \
16 --environment PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
17 --username $u --password $p --wait-for stdout
18 status=$?
19 $vbm controlvm $VM savestate
20 if [ $status -ne 0 ] ; then
21 echo "Build failed while in VM $VM"
22 break
24 done