[PATCH] test: Update Makefile to avoid failing on missing images
The image links may become invalid over time, so ignore download
errors to prevent 'make assets' from failing.
Link: https://bugs.passt.top/show_bug.cgi?id=150
Suggested-by: Stefano Brivio
On Wed, 3 Dec 2025 17:42:30 +0800
Yumei Huang
The image links may become invalid over time, so ignore download errors to prevent 'make assets' from failing.
Link: https://bugs.passt.top/show_bug.cgi?id=150 Suggested-by: Stefano Brivio
Signed-off-by: Yumei Huang --- test/Makefile | 52 +++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/test/Makefile b/test/Makefile index 5b5f0fc..6ed233a 100644 --- a/test/Makefile +++ b/test/Makefile @@ -164,82 +164,82 @@ realclean: clean
# Debian downloads debian-8.11.0-openstack-%.qcow2: - $(WGET) -O $@ https://cloud.debian.org/images/cloud/OpenStack/archive/8.11.0/debian-8.11.0... + -$(WGET) -O $@ https://cloud.debian.org/images/cloud/OpenStack/archive/8.11.0/debian-8.11.0...
[...]
If I had known it could be so simple, I would have done that before. :) Applied. -- Stefano
participants (2)
-
Stefano Brivio
-
Yumei Huang