2015-09-21 21:48:40 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2015-10-08 19:40:44 +00:00
|
|
|
rootdir=$(readlink -f $(dirname $0))
|
|
|
|
source "$rootdir/scripts/autotest_common.sh"
|
2015-09-21 21:48:40 +00:00
|
|
|
|
2015-10-03 00:11:56 +00:00
|
|
|
out=$PWD
|
2015-09-21 21:48:40 +00:00
|
|
|
|
2015-10-05 17:54:32 +00:00
|
|
|
umask 022
|
|
|
|
|
2015-10-08 19:40:44 +00:00
|
|
|
cd $rootdir
|
2015-09-21 21:48:40 +00:00
|
|
|
|
2016-12-16 17:14:48 +00:00
|
|
|
date -u
|
|
|
|
git describe --tags
|
|
|
|
|
2015-10-08 19:40:44 +00:00
|
|
|
timing_enter autobuild
|
|
|
|
|
2017-03-30 19:06:49 +00:00
|
|
|
./configure $config_params
|
|
|
|
|
2015-10-08 19:40:44 +00:00
|
|
|
timing_enter check_format
|
2017-06-29 21:38:10 +00:00
|
|
|
if [ $SPDK_RUN_CHECK_FORMAT -eq 1 ]; then
|
|
|
|
./scripts/check_format.sh
|
|
|
|
fi
|
2015-10-08 19:40:44 +00:00
|
|
|
timing_exit check_format
|
2015-09-23 15:52:44 +00:00
|
|
|
|
2016-01-19 03:36:50 +00:00
|
|
|
timing_enter build_kmod
|
2017-06-29 21:33:32 +00:00
|
|
|
if [ $SPDK_BUILD_IOAT_KMOD -eq 1 ]; then
|
|
|
|
./scripts/build_kmod.sh build
|
|
|
|
fi
|
2016-01-19 03:36:50 +00:00
|
|
|
timing_exit build_kmod
|
|
|
|
|
2018-02-12 15:53:33 +00:00
|
|
|
# Print compiler versions to log
|
|
|
|
$MAKE cc_version
|
|
|
|
$MAKE cxx_version
|
|
|
|
|
2015-09-21 21:48:40 +00:00
|
|
|
scanbuild=''
|
2018-02-08 22:35:34 +00:00
|
|
|
make_timing_label='make'
|
2017-05-31 23:48:02 +00:00
|
|
|
if [ $SPDK_RUN_SCANBUILD -eq 1 ] && hash scan-build; then
|
2015-09-22 23:20:35 +00:00
|
|
|
scanbuild="scan-build -o $out/scan-build-tmp --status-bugs"
|
2018-02-08 22:35:34 +00:00
|
|
|
make_timing_label='scanbuild_make'
|
2015-09-21 21:48:40 +00:00
|
|
|
fi
|
2017-05-31 23:48:02 +00:00
|
|
|
echo $scanbuild
|
2015-10-03 00:11:56 +00:00
|
|
|
$MAKE $MAKEFLAGS clean
|
2015-10-08 19:40:44 +00:00
|
|
|
|
2018-02-08 22:35:34 +00:00
|
|
|
timing_enter "$make_timing_label"
|
2015-09-22 23:20:35 +00:00
|
|
|
fail=0
|
2017-03-30 19:06:49 +00:00
|
|
|
time $scanbuild $MAKE $MAKEFLAGS || fail=1
|
2017-02-15 20:16:48 +00:00
|
|
|
if [ $fail -eq 1 ]; then
|
|
|
|
if [ -d $out/scan-build-tmp ]; then
|
|
|
|
scanoutput=$(ls -1 $out/scan-build-tmp/)
|
|
|
|
mv $out/scan-build-tmp/$scanoutput $out/scan-build
|
|
|
|
rm -rf $out/scan-build-tmp
|
|
|
|
chmod -R a+rX $out/scan-build
|
|
|
|
fi
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
rm -rf $out/scan-build-tmp
|
|
|
|
fi
|
2018-02-08 22:35:34 +00:00
|
|
|
timing_exit "$make_timing_label"
|
2015-09-21 21:48:40 +00:00
|
|
|
|
2017-06-20 17:22:21 +00:00
|
|
|
# Check for generated files that are not listed in .gitignore
|
2018-02-08 22:35:34 +00:00
|
|
|
timing_enter generated_files_check
|
2017-06-20 17:22:21 +00:00
|
|
|
if [ `git status --porcelain | wc -l` -ne 0 ]; then
|
|
|
|
echo "Generated files missing from .gitignore:"
|
|
|
|
git status --porcelain
|
|
|
|
exit 1
|
|
|
|
fi
|
2018-02-08 22:35:34 +00:00
|
|
|
timing_exit generated_files_check
|
2017-06-20 17:22:21 +00:00
|
|
|
|
2015-09-25 20:29:39 +00:00
|
|
|
# Check that header file dependencies are working correctly by
|
|
|
|
# capturing a binary's stat data before and after touching a
|
|
|
|
# header file and re-making.
|
2018-02-08 22:35:34 +00:00
|
|
|
timing_enter dependency_check
|
2015-09-25 20:29:39 +00:00
|
|
|
STAT1=`stat examples/nvme/identify/identify`
|
2015-11-03 01:37:15 +00:00
|
|
|
sleep 1
|
2015-09-25 20:29:39 +00:00
|
|
|
touch lib/nvme/nvme_internal.h
|
2017-03-30 19:06:49 +00:00
|
|
|
$MAKE $MAKEFLAGS
|
2015-09-25 20:29:39 +00:00
|
|
|
STAT2=`stat examples/nvme/identify/identify`
|
|
|
|
|
|
|
|
if [ "$STAT1" == "$STAT2" ]; then
|
2017-02-15 20:16:48 +00:00
|
|
|
echo "Header dependency check failed"
|
|
|
|
exit 1
|
2015-09-25 20:29:39 +00:00
|
|
|
fi
|
2018-02-08 22:35:34 +00:00
|
|
|
timing_exit dependency_check
|
2015-09-25 20:29:39 +00:00
|
|
|
|
2017-11-15 17:36:36 +00:00
|
|
|
# Test 'make install'
|
2018-02-08 22:35:34 +00:00
|
|
|
timing_enter make_install
|
2017-11-15 17:36:36 +00:00
|
|
|
rm -rf /tmp/spdk
|
|
|
|
mkdir /tmp/spdk
|
|
|
|
$MAKE $MAKEFLAGS install DESTDIR=/tmp/spdk prefix=/usr
|
|
|
|
ls -lR /tmp/spdk
|
|
|
|
rm -rf /tmp/spdk
|
2018-02-08 22:35:34 +00:00
|
|
|
timing_exit make_install
|
2015-09-21 21:48:40 +00:00
|
|
|
|
2015-10-08 19:40:44 +00:00
|
|
|
timing_enter doxygen
|
2017-05-02 00:38:42 +00:00
|
|
|
if [ $SPDK_BUILD_DOC -eq 1 ] && hash doxygen; then
|
2017-03-03 16:41:17 +00:00
|
|
|
(cd "$rootdir"/doc; $MAKE $MAKEFLAGS) &> "$out"/doxygen.log
|
2017-04-28 22:49:03 +00:00
|
|
|
if hash pdflatex; then
|
|
|
|
(cd "$rootdir"/doc/output/latex && $MAKE $MAKEFLAGS) &>> "$out"/doxygen.log
|
|
|
|
fi
|
2015-09-21 21:48:40 +00:00
|
|
|
mkdir -p "$out"/doc
|
2016-03-25 16:54:24 +00:00
|
|
|
mv "$rootdir"/doc/output/html "$out"/doc
|
2017-04-28 22:49:03 +00:00
|
|
|
if [ -f "$rootdir"/doc/output/latex/refman.pdf ]; then
|
2017-05-02 01:12:29 +00:00
|
|
|
mv "$rootdir"/doc/output/latex/refman.pdf "$out"/doc/spdk.pdf
|
2017-04-28 22:49:03 +00:00
|
|
|
fi
|
2017-08-22 23:13:22 +00:00
|
|
|
(cd "$rootdir"/doc; $MAKE $MAKEFLAGS clean) &>> "$out"/doxygen.log
|
2016-03-25 16:54:24 +00:00
|
|
|
rm -rf "$rootdir"/doc/output
|
2015-09-21 21:48:40 +00:00
|
|
|
fi
|
2015-10-08 19:40:44 +00:00
|
|
|
timing_exit doxygen
|
|
|
|
|
|
|
|
timing_exit autobuild
|