Move the RPM builds away from autopackage.sh into a dedicated test suite - this will allow the actual packaging tests to be run in a separate instance. Signed-off-by: Michal Berger <michal.berger@intel.com> Change-Id: I23a824db7aa3a5e469bea9b2536a83ae0a5c8e04 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/14937 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
62 lines
1.3 KiB
Bash
Executable File
62 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# If the configuration of tests is not provided, no tests will be carried out.
|
|
if [[ ! -f $1 ]]; then
|
|
echo "ERROR: SPDK test configuration not specified"
|
|
exit 1
|
|
fi
|
|
|
|
source "$1"
|
|
|
|
rootdir=$(readlink -f $(dirname $0))
|
|
testdir=$rootdir # to get the storage space for tests
|
|
source "$rootdir/test/common/autotest_common.sh"
|
|
|
|
out=$PWD
|
|
|
|
MAKEFLAGS=${MAKEFLAGS:--j16}
|
|
cd $rootdir
|
|
|
|
timing_enter porcelain_check
|
|
$MAKE clean
|
|
|
|
if [ $(git status --porcelain --ignore-submodules | wc -l) -ne 0 ]; then
|
|
echo make clean left the following files:
|
|
git status --porcelain --ignore-submodules
|
|
exit 1
|
|
fi
|
|
timing_exit porcelain_check
|
|
|
|
if [[ $SPDK_TEST_RELEASE_BUILD -eq 1 ]]; then
|
|
run_test "packaging" test/packaging/packaging.sh
|
|
$MAKE clean
|
|
fi
|
|
|
|
if [[ $RUN_NIGHTLY -eq 0 || $SPDK_TEST_UNITTEST -eq 0 ]]; then
|
|
timing_finish
|
|
exit 0
|
|
fi
|
|
|
|
timing_enter build_release
|
|
|
|
config_params="$(get_config_params | sed 's/--enable-debug//g')"
|
|
if [ $(uname -s) = Linux ]; then
|
|
# LTO needs a special compiler to work under clang. See detect_cc.sh for details.
|
|
if [[ $CC == *clang* ]]; then
|
|
LD=$(type -P ld.gold)
|
|
export LD
|
|
fi
|
|
./configure $config_params --enable-lto
|
|
else
|
|
# LTO needs a special compiler to work on BSD.
|
|
./configure $config_params
|
|
fi
|
|
$MAKE ${MAKEFLAGS}
|
|
$MAKE ${MAKEFLAGS} clean
|
|
|
|
timing_exit build_release
|
|
|
|
timing_finish
|