From bebc5f957e667eb8a58d6ba684b9e9cbd9cd8b08 Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Tue, 28 Sep 2021 15:08:39 +0200 Subject: [PATCH] scripts: Pin virtiofsd-rs to a specific revision In order to avoid CI issues, from now on, we'll update the virtiofsd-rs revision manually. Signed-off-by: Sebastien Boeuf --- scripts/run_integration_tests_aarch64.sh | 3 ++- scripts/run_integration_tests_x86_64.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/run_integration_tests_aarch64.sh b/scripts/run_integration_tests_aarch64.sh index b5c91322d..b967ece5b 100755 --- a/scripts/run_integration_tests_aarch64.sh +++ b/scripts/run_integration_tests_aarch64.sh @@ -202,7 +202,8 @@ update_workloads() { VIRTIOFSD_RS_DIR="virtiofsd_rs_build" if [ ! -f "$VIRTIOFSD_RS" ]; then pushd $WORKLOADS_DIR - git clone --depth 1 "https://gitlab.com/virtio-fs/virtiofsd-rs.git" $VIRTIOFSD_RS_DIR + git clone "https://gitlab.com/virtio-fs/virtiofsd-rs.git" $VIRTIOFSD_RS_DIR + git checkout c847ab63acabed2ed6e6913b9c76bb5099a1d4cb pushd $VIRTIOFSD_RS_DIR time cargo build --release cp target/release/virtiofsd-rs $VIRTIOFSD_RS || exit 1 diff --git a/scripts/run_integration_tests_x86_64.sh b/scripts/run_integration_tests_x86_64.sh index 9711fa1ff..7c5f6702a 100755 --- a/scripts/run_integration_tests_x86_64.sh +++ b/scripts/run_integration_tests_x86_64.sh @@ -122,7 +122,8 @@ VIRTIOFSD_RS="$WORKLOADS_DIR/virtiofsd-rs" VIRTIOFSD_RS_DIR="virtiofsd_rs_build" if [ ! -f "$VIRTIOFSD_RS" ]; then pushd $WORKLOADS_DIR - git clone --depth 1 "https://gitlab.com/virtio-fs/virtiofsd-rs.git" $VIRTIOFSD_RS_DIR + git clone "https://gitlab.com/virtio-fs/virtiofsd-rs.git" $VIRTIOFSD_RS_DIR + git checkout c847ab63acabed2ed6e6913b9c76bb5099a1d4cb pushd $VIRTIOFSD_RS_DIR time cargo build --release cp target/release/virtiofsd-rs $VIRTIOFSD_RS || exit 1