From a8d962640f0dabde12dd7738384a13081c23b3a2 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 25 Mar 2026 06:28:19 -0700 Subject: [PATCH] build: Use newer virtiofsd Switch to a git hash of virtiofsd as unfortunately the last release is some time ago and does not incorporate a dependency bump that enables it to work with snapshot-restore. Signed-off-by: Rob Bradford --- scripts/run_integration_tests_aarch64.sh | 2 +- scripts/run_integration_tests_x86_64.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run_integration_tests_aarch64.sh b/scripts/run_integration_tests_aarch64.sh index 2489d7892..b4c3482d0 100755 --- a/scripts/run_integration_tests_aarch64.sh +++ b/scripts/run_integration_tests_aarch64.sh @@ -13,7 +13,7 @@ build_virtiofsd() { VIRTIOFSD_DIR="$WORKLOADS_DIR/virtiofsd_build" VIRTIOFSD_REPO="https://gitlab.com/virtio-fs/virtiofsd.git" - checkout_repo "$VIRTIOFSD_DIR" "$VIRTIOFSD_REPO" v1.13.3 "bbf82173682a3e48083771a0a23331e5c23b4924" + checkout_repo "$VIRTIOFSD_DIR" "$VIRTIOFSD_REPO" main "0f5865629dc995a3e9d5a73b4eb45bb91740bccb" if [ ! -f "$VIRTIOFSD_DIR/.built" ]; then pushd "$VIRTIOFSD_DIR" || exit diff --git a/scripts/run_integration_tests_x86_64.sh b/scripts/run_integration_tests_x86_64.sh index 80ac27934..858bd2f87 100755 --- a/scripts/run_integration_tests_x86_64.sh +++ b/scripts/run_integration_tests_x86_64.sh @@ -124,7 +124,7 @@ if [ ! -f "$VIRTIOFSD" ]; then pushd "$WORKLOADS_DIR" || exit git clone "https://gitlab.com/virtio-fs/virtiofsd.git" $VIRTIOFSD_DIR pushd $VIRTIOFSD_DIR || exit - git checkout v1.13.3 + git checkout 0f5865629dc995a3e9d5a73b4eb45bb91740bccb time cargo build --release cp target/release/virtiofsd "$VIRTIOFSD" || exit 1 popd || exit