From 18a533e5895197c9a12d8c11928ffd277765412c Mon Sep 17 00:00:00 2001 From: Michal Berger Date: Thu, 7 Oct 2021 11:43:29 +0200 Subject: [PATCH] pkgdep/git: Disable fio in the refspdk builds This allows us to remove the fio patch needed for the current LTS. Signed-off-by: Michal Berger Change-Id: If6a73669842179ced94f857557e6bf594aaddfb7 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/9784 Reviewed-by: Tomasz Zawadzki Reviewed-by: Jim Harris Tested-by: SPDK CI Jenkins Community-CI: Broadcom CI --- test/common/config/pkgdep/git | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/common/config/pkgdep/git b/test/common/config/pkgdep/git index 1b03eb501..2d34536f6 100644 --- a/test/common/config/pkgdep/git +++ b/test/common/config/pkgdep/git @@ -81,14 +81,14 @@ function install_refspdk() { # Prepare separate, fixed, cmdline for the FreeBSD, Issue #1397. if [[ $OSID == freebsd ]]; then config_params="--enable-debug" - config_params+=" --without-isal --with-fio=/usr/src/fio" + config_params+=" --without-isal" config_params+=" --with-idxd --disable-unit-tests" MAKE=gmake else config_params="$(get_config_params)" fi - $output_dir/configure $(echo $config_params | sed 's/--enable-coverage//g') + $output_dir/configure $(echo $config_params | sed 's/--enable-coverage//g') --without-fio if [[ $OSID != freebsd ]]; then $MAKE -C $output_dir $MAKEFLAGS include/spdk/config.h CONFIG_OCF_PATH="$output_dir/ocf" $MAKE -C $output_dir/lib/env_ocf $MAKEFLAGS exportlib O=$output_dir/ocf.a