From 1fc23cb48a396663f3c37fb148cf265f213dc8b1 Mon Sep 17 00:00:00 2001 From: Radostin Stoyanov Date: Sat, 20 May 2023 08:45:50 +0100 Subject: [PATCH 1/2] vagrant: update to version 2.3.7 This patch also updated the download URL format from https://releases.hashicorp.com/vagrant/2.3.7/vagrant_2.3.7_x86_64.deb to https://releases.hashicorp.com/vagrant/2.3.7/vagrant_2.3.7-1_amd64.deb Signed-off-by: Radostin Stoyanov --- scripts/ci/vagrant.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci/vagrant.sh b/scripts/ci/vagrant.sh index ac4b5579d5..e26b5d786a 100755 --- a/scripts/ci/vagrant.sh +++ b/scripts/ci/vagrant.sh @@ -6,7 +6,7 @@ set -e set -x -VAGRANT_VERSION=2.2.19 +VAGRANT_VERSION=2.3.7 FEDORA_VERSION=37 FEDORA_BOX_VERSION=37.20221105.0 @@ -19,7 +19,7 @@ setup() { # Tar up the git checkout to have vagrant rsync it to the VM tar cf criu.tar ../../../criu # Cirrus has problems with the following certificate. - wget --no-check-certificate https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}_"$(uname -m)".deb -O /tmp/vagrant.deb && \ + wget --no-check-certificate https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}-1_"$(dpkg --print-architecture)".deb -O /tmp/vagrant.deb && \ dpkg -i /tmp/vagrant.deb ./apt-install libvirt-clients libvirt-daemon-system libvirt-dev qemu-utils qemu \ From e470c6d074efa50551b202badb9ce8b2f4965503 Mon Sep 17 00:00:00 2001 From: Radostin Stoyanov Date: Sat, 20 May 2023 08:47:04 +0100 Subject: [PATCH 2/2] vagrant: run tests with fedora 38 Signed-off-by: Radostin Stoyanov --- scripts/ci/vagrant.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci/vagrant.sh b/scripts/ci/vagrant.sh index e26b5d786a..328903f385 100755 --- a/scripts/ci/vagrant.sh +++ b/scripts/ci/vagrant.sh @@ -7,8 +7,8 @@ set -e set -x VAGRANT_VERSION=2.3.7 -FEDORA_VERSION=37 -FEDORA_BOX_VERSION=37.20221105.0 +FEDORA_VERSION=38 +FEDORA_BOX_VERSION=38.20230413.1 setup() { if [ -n "$TRAVIS" ]; then