toaruos/util/build-travis.sh

27 lines
365 B
Bash
Raw Normal View History

2014-05-12 10:17:41 +04:00
#!/bin/bash
2014-05-13 07:30:49 +04:00
(
while [ 1 == 1 ]; do
echo "..."
sleep 1m
done
) &
2014-05-12 10:33:20 +04:00
2014-05-13 07:30:49 +04:00
watchdog_pid=$!
2014-09-10 07:25:13 +04:00
sudo apt-get update >/dev/null 2>/dev/null
sudo apt-get install expect exuberant-ctags >/dev/null 2>/dev/null
2015-07-26 03:09:16 +03:00
if [ ! -d "hdd/usr/lib" ]; then
make toolchain >/dev/null 2>/dev/null
fi
2014-05-12 10:17:41 +04:00
2014-05-13 07:30:49 +04:00
kill $!
2014-05-12 10:17:41 +04:00
. toolchain/activate.sh
make
2014-05-13 07:30:49 +04:00
expect util/test-travis.exp