From: Li-Wen Hsu Date: Mon, 9 Jan 2023 20:32:01 +0000 (+0800) Subject: Upgrade all packages in the FreeBSD VMs to ensure the freshness X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=5e988b9614e861df7aad03a0fe06a75b5b0d1c82;p=people%2Fpauldu%2Fqemu.git Upgrade all packages in the FreeBSD VMs to ensure the freshness This (hopefully) fixes the errors that we currently see in the FreeBSD jobs in the gitlab CI: ld-elf.so.1: /usr/local/bin/bash: Undefined symbol "rl_set_timeout" Signed-off-by: Li-Wen Hsu Message-Id: [thuth: Update subject and patch description] Signed-off-by: Thomas Huth --- diff --git a/.gitlab-ci.d/cirrus.yml b/.gitlab-ci.d/cirrus.yml index 785b163aa6..502dfd612c 100644 --- a/.gitlab-ci.d/cirrus.yml +++ b/.gitlab-ci.d/cirrus.yml @@ -53,7 +53,7 @@ x64-freebsd-12-build: CIRRUS_VM_IMAGE_NAME: freebsd-12-4 CIRRUS_VM_CPUS: 8 CIRRUS_VM_RAM: 8G - UPDATE_COMMAND: pkg update + UPDATE_COMMAND: pkg update; pkg upgrade -y INSTALL_COMMAND: pkg install -y TEST_TARGETS: check @@ -66,7 +66,7 @@ x64-freebsd-13-build: CIRRUS_VM_IMAGE_NAME: freebsd-13-1 CIRRUS_VM_CPUS: 8 CIRRUS_VM_RAM: 8G - UPDATE_COMMAND: pkg update + UPDATE_COMMAND: pkg update; pkg upgrade -y INSTALL_COMMAND: pkg install -y TEST_TARGETS: check