From 8ec6cda0c50bab6031d00f9e3d92d22e3cb29b95 Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Wed, 2 Oct 2019 09:11:08 +0200 Subject: [PATCH] ci: Do not look for vubridge to decide if qemu must be built We no longer build vubridge, so we end up cloning qemu and building virtiofs and the block backend all the time. Fixes: #312 Signed-off-by: Samuel Ortiz --- scripts/run_integration_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_integration_tests.sh b/scripts/run_integration_tests.sh index bae2caf3c..7263e70fc 100755 --- a/scripts/run_integration_tests.sh +++ b/scripts/run_integration_tests.sh @@ -80,7 +80,7 @@ fi VIRTIOFSD="$WORKLOADS_DIR/virtiofsd" VUBD="$WORKLOADS_DIR/vubd" QEMU_DIR="qemu_build" -if [ ! -f "$VIRTIOFSD" ] || [ ! -f "$VUBRIDGE" ] || [ ! -f "$VUBD" ]; then +if [ ! -f "$VIRTIOFSD" ] || [ ! -f "$VUBD" ]; then pushd $WORKLOADS_DIR git clone --depth 1 "https://github.com/sboeuf/qemu.git" -b "virtio-fs" $QEMU_DIR pushd $QEMU_DIR