2016-08-01 17:48:27 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
rootdir=$(readlink -f $(dirname $0))
|
|
|
|
|
2017-05-02 00:34:15 +00:00
|
|
|
conf=~/autorun-spdk.conf
|
|
|
|
|
2016-08-01 17:48:27 +00:00
|
|
|
# Runs agent scripts
|
2017-05-02 00:34:15 +00:00
|
|
|
$rootdir/autobuild.sh "$conf"
|
2018-10-12 07:19:54 +00:00
|
|
|
sudo WITH_DPDK_DIR="$WITH_DPDK_DIR" $rootdir/autotest.sh "$conf"
|
2017-05-02 00:34:15 +00:00
|
|
|
$rootdir/autopackage.sh "$conf"
|