|
| From: | Richard Henderson |
| Subject: | Re: [PATCH v3 05/13] tests/vm: update sha256sum for ubuntu.aarch64 |
| Date: | Thu, 7 Jul 2022 16:33:14 +0530 |
| User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.1 |
On 7/7/22 09:33, John Snow wrote:
This checksum changes weekly; use a fixed point image and update the
checksum so we don't have to re-download it quite so much.
Note: Just like the centos.aarch64 test, this test currently seems very
flaky when run as a TCG test.
Signed-off-by: John Snow <jsnow@redhat.com>
---
tests/vm/ubuntu.aarch64 | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/tests/vm/ubuntu.aarch64 b/tests/vm/ubuntu.aarch64
index b291945a7e9..fc9c2ce22ff 100755
--- a/tests/vm/ubuntu.aarch64
+++ b/tests/vm/ubuntu.aarch64
@@ -32,9 +32,13 @@ DEFAULT_CONFIG = {
class UbuntuAarch64VM(ubuntuvm.UbuntuVM):
name = "ubuntu.aarch64"
arch = "aarch64"
+ # NOTE: The Ubuntu 18.04 cloud images are updated weekly. The
+ # release below has been chosen as the latest at time of writing.
+ # Using the rolling latest release means the SHA will be wrong
+ # within a week.
Isn't 18.04 unsupported now? Surely bumping to 20.04 or 22.04 would be better. r~
image_name = "ubuntu-18.04-server-cloudimg-arm64.img"
- image_link = "https://cloud-images.ubuntu.com/releases/18.04/release/" +
image_name
-
image_sha256="0fdcba761965735a8a903d8b88df8e47f156f48715c00508e4315c506d7d3cb1"
+ image_link =
"https://cloud-images.ubuntu.com/releases/bionic/release-20220610/" + image_name
+
image_sha256="0eacc5142238788365576b15f1d0b6f23dda6d3e545ee22f5306af7bd6ec47bd"
BUILD_SCRIPT = """
set -e;
cd $(mktemp -d);
| [Prev in Thread] | Current Thread | [Next in Thread] |