* [PATCH] test: Remove unused distro images
@ 2025-09-08 6:09 Yumei Huang
2025-09-08 7:09 ` David Gibson
0 siblings, 1 reply; 7+ messages in thread
From: Yumei Huang @ 2025-09-08 6:09 UTC (permalink / raw)
To: passt-dev; +Cc: sbrivio, dgibson, yuhuang
Some of the download links are broken, and none of the images are
used in current tests. Removing them so it won't block make.
Signed-off-by: Yumei Huang <yuhuang@redhat.com>
---
test/Makefile | 124 +-------------------------------------------------
1 file changed, 1 insertion(+), 123 deletions(-)
diff --git a/test/Makefile b/test/Makefile
index a774285..d7c37d6 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -9,51 +9,7 @@ BATS = bats -j $(shell nproc)
EXETOOL = exeter/exetool/exetool
WGET = wget -c
-DEBIAN_IMGS = debian-8.11.0-openstack-amd64.qcow2 \
- debian-10-nocloud-amd64.qcow2 \
- debian-10-generic-arm64.qcow2 \
- debian-10-generic-ppc64el-20220911-1135.qcow2 \
- debian-11-nocloud-amd64.qcow2 \
- debian-11-generic-arm64.qcow2 \
- debian-11-generic-ppc64el.qcow2 \
- debian-sid-nocloud-amd64-daily.qcow2 \
- debian-sid-nocloud-arm64-daily.qcow2 \
- debian-sid-nocloud-ppc64el-daily.qcow2
-
-FEDORA_IMGS = Fedora-Cloud-Base-26-1.5.x86_64.qcow2 \
- Fedora-Cloud-Base-27-1.6.x86_64.qcow2 \
- Fedora-Cloud-Base-28-1.1.x86_64.qcow2 \
- Fedora-Cloud-Base-28-1.1.aarch64.qcow2 \
- Fedora-Cloud-Base-29-1.2.x86_64.qcow2 \
- Fedora-Cloud-Base-29-1.2.aarch64.qcow2 \
- Fedora-Cloud-Base-30-1.2.x86_64.qcow2 \
- Fedora-Cloud-Base-30-1.2.aarch64.qcow2 \
- Fedora-Cloud-Base-31-1.9.x86_64.qcow2 \
- Fedora-Cloud-Base-31-1.9.aarch64.qcow2 \
- Fedora-Cloud-Base-32-1.6.x86_64.qcow2 \
- Fedora-Cloud-Base-32-1.6.aarch64.qcow2 \
- Fedora-Cloud-Base-33-1.2.x86_64.qcow2 \
- Fedora-Cloud-Base-33-1.2.aarch64.qcow2 \
- Fedora-Cloud-Base-34-1.2.x86_64.qcow2 \
- Fedora-Cloud-Base-34-1.2.aarch64.qcow2 \
- Fedora-Cloud-Base-35-1.2.x86_64.qcow2 \
- Fedora-Cloud-Base-35-1.2.aarch64.qcow2
-
-OPENSUSE_IMGS = openSUSE-Leap-15.1-JeOS.x86_64-kvm-and-xen.qcow2 \
- openSUSE-Leap-15.2-JeOS.x86_64-kvm-and-xen.qcow2 \
- openSUSE-Leap-15.3-JeOS.x86_64-kvm-and-xen.qcow2 \
- openSUSE-Tumbleweed-ARM-JeOS-efi.aarch64.raw.xz \
- openSUSE-Tumbleweed-ARM-JeOS-efi.armv7l.raw.xz
-
-UBUNTU_OLD_IMGS = trusty-server-cloudimg-amd64-disk1.img \
- trusty-server-cloudimg-i386-disk1.img \
- trusty-server-cloudimg-ppc64el-disk1.img
-UBUNTU_NEW_IMGS = xenial-server-cloudimg-powerpc-disk1.img \
- jammy-server-cloudimg-s390x.img
-UBUNTU_IMGS = $(UBUNTU_OLD_IMGS) $(UBUNTU_NEW_IMGS)
-
-DOWNLOAD_ASSETS = exeter mbuto podman \
- $(DEBIAN_IMGS) $(FEDORA_IMGS) $(OPENSUSE_IMGS) $(UBUNTU_IMGS)
+DOWNLOAD_ASSETS = exeter mbuto podman
TESTDATA_ASSETS = small.bin big.bin medium.bin \
rampstream
LOCAL_ASSETS = mbuto.img mbuto.mem.img podman/bin/podman QEMU_EFI.fd \
@@ -150,81 +106,3 @@ clean:
realclean: clean
rm -rf $(DOWNLOAD_ASSETS)
-# 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-openstack-$*.qcow2
-
-debian-10-nocloud-%.qcow2:
- $(WGET) -O $@ https://cloud.debian.org/images/cloud/buster/latest/debian-10-nocloud-$*.qcow2
-
-debian-10-generic-ppc64el-20220911-1135.qcow2:
- $(WGET) -O $@ https://cloud.debian.org/images/cloud/buster/20220911-1135/debian-10-generic-ppc64el-20220911-1135.qcow2
-
-debian-10-generic-%.qcow2:
- $(WGET) -O $@ https://cloud.debian.org/images/cloud/buster/latest/debian-10-generic-$*.qcow2
-
-debian-11-nocloud-%.qcow2:
- $(WGET) -O $@ https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-nocloud-$*.qcow2
-
-debian-11-generic-%.qcow2:
- $(WGET) -O $@ https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-generic-$*.qcow2
-
-debian-sid-nocloud-%-daily.qcow2:
- $(WGET) -O $@ https://cloud.debian.org/images/cloud/sid/daily/latest/debian-sid-nocloud-$*-daily.qcow2
-
-# Fedora downloads
-Fedora-Cloud-Base-26-1.5.%.qcow2:
- $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/26/CloudImages/$*/images/Fedora-Cloud-Base-26-1.5.$*.qcow2
-
-Fedora-Cloud-Base-27-1.6.%.qcow2:
- $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/27/CloudImages/$*/images/Fedora-Cloud-Base-27-1.6.$*.qcow2
-
-Fedora-Cloud-Base-28-1.1.%.qcow2:
- $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/28/Cloud/$*/images/Fedora-Cloud-Base-28-1.1.$*.qcow2
-
-Fedora-Cloud-Base-29-1.2.%.qcow2:
- $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/29/Cloud/$*/images/Fedora-Cloud-Base-29-1.2.$*.qcow2
-
-Fedora-Cloud-Base-30-1.2.%.qcow2:
- $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/30/Cloud/$*/images/Fedora-Cloud-Base-30-1.2.$*.qcow2
-
-Fedora-Cloud-Base-31-1.9.%.qcow2:
- $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/31/Cloud/$*/images/Fedora-Cloud-Base-31-1.9.$*.qcow2
-
-Fedora-Cloud-Base-32-1.6.%.qcow2:
- $(WGET) -O $@ https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/32/Cloud/$*/images/Fedora-Cloud-Base-32-1.6.$*.qcow2
-
-Fedora-Cloud-Base-33-1.2.%.qcow2:
- $(WGET) -O $@ https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/33/Cloud/$*/images/Fedora-Cloud-Base-33-1.2.$*.qcow2
-
-Fedora-Cloud-Base-34-1.2.%.qcow2:
- $(WGET) -O $@ https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/34/Cloud/$*/images/Fedora-Cloud-Base-34-1.2.$*.qcow2
-
-Fedora-Cloud-Base-35-1.2.%.qcow2:
- $(WGET) -O $@ https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/35/Cloud/$*/images/Fedora-Cloud-Base-35-1.2.$*.qcow2
-
-# OpenSuSE downloads
-openSUSE-Leap-15.1-JeOS.x86_64-kvm-and-xen.qcow2:
- $(WGET) -O $@ https://download.opensuse.org/distribution/leap/15.1/jeos/openSUSE-Leap-15.1-JeOS.x86_64-kvm-and-xen.qcow2
-
-openSUSE-Leap-15.2-JeOS.x86_64-kvm-and-xen.qcow2:
- $(WGET) -O $@ https://download.opensuse.org/distribution/leap/15.2/appliances/openSUSE-Leap-15.2-JeOS.x86_64-kvm-and-xen.qcow2
-
-openSUSE-Leap-15.3-JeOS.x86_64-kvm-and-xen.qcow2:
- $(WGET) -O $@ https://download.opensuse.org/distribution/leap/15.3/appliances/openSUSE-Leap-15.3-JeOS.x86_64-kvm-and-xen.qcow2
-
-openSUSE-Tumbleweed-ARM-JeOS-efi.aarch64.raw.xz:
- $(WGET) -O $@ http://download.opensuse.org/ports/aarch64/tumbleweed/appliances/openSUSE-Tumbleweed-ARM-JeOS-efi.aarch64.raw.xz
-
-openSUSE-Tumbleweed-ARM-JeOS-efi.armv7l.raw.xz:
- $(WGET) -O $@ http://download.opensuse.org/ports/armv7hl/tumbleweed/appliances/openSUSE-Tumbleweed-ARM-JeOS-efi.armv7l.raw.xz
-
-# Ubuntu downloads
-trusty-server-cloudimg-%-disk1.img:
- $(WGET) -O $@ https://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-$*-disk1.img
-
-xenial-server-cloudimg-powerpc-disk1.img:
- $(WGET) -O $@ https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-powerpc-disk1.img
-
-jammy-server-cloudimg-s390x.img:
- $(WGET) -O $@ https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-s390x.img
--
2.47.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] test: Remove unused distro images
2025-09-08 6:09 [PATCH] test: Remove unused distro images Yumei Huang
@ 2025-09-08 7:09 ` David Gibson
2025-09-08 7:56 ` Yumei Huang
2025-09-08 8:02 ` Stefano Brivio
0 siblings, 2 replies; 7+ messages in thread
From: David Gibson @ 2025-09-08 7:09 UTC (permalink / raw)
To: Yumei Huang; +Cc: passt-dev, sbrivio, dgibson
[-- Attachment #1: Type: text/plain, Size: 8039 bytes --]
On Mon, Sep 08, 2025 at 02:09:21PM +0800, Yumei Huang wrote:
> Some of the download links are broken, and none of the images are
> used in current tests. Removing them so it won't block make.
>
> Signed-off-by: Yumei Huang <yuhuang@redhat.com>
Ah, sorry. I realised I forgot some information when I suggested you
make this change.
Although we're not using these images at the moment, we hope to use
them again some time in future. For that reason it's useful to keep
the information about what the images were and how they worked in
place.
So, rather than removing this completely, it would be better to keep
the {DEBIAN,...}_IMGS variables and the download targets, but just
don't include them in DOWNLOAD_ASSETS for now. That will make it
easier to put a fixed version of this back when we're ready.
> ---
> test/Makefile | 124 +-------------------------------------------------
> 1 file changed, 1 insertion(+), 123 deletions(-)
>
> diff --git a/test/Makefile b/test/Makefile
> index a774285..d7c37d6 100644
> --- a/test/Makefile
> +++ b/test/Makefile
> @@ -9,51 +9,7 @@ BATS = bats -j $(shell nproc)
> EXETOOL = exeter/exetool/exetool
> WGET = wget -c
>
> -DEBIAN_IMGS = debian-8.11.0-openstack-amd64.qcow2 \
> - debian-10-nocloud-amd64.qcow2 \
> - debian-10-generic-arm64.qcow2 \
> - debian-10-generic-ppc64el-20220911-1135.qcow2 \
> - debian-11-nocloud-amd64.qcow2 \
> - debian-11-generic-arm64.qcow2 \
> - debian-11-generic-ppc64el.qcow2 \
> - debian-sid-nocloud-amd64-daily.qcow2 \
> - debian-sid-nocloud-arm64-daily.qcow2 \
> - debian-sid-nocloud-ppc64el-daily.qcow2
> -
> -FEDORA_IMGS = Fedora-Cloud-Base-26-1.5.x86_64.qcow2 \
> - Fedora-Cloud-Base-27-1.6.x86_64.qcow2 \
> - Fedora-Cloud-Base-28-1.1.x86_64.qcow2 \
> - Fedora-Cloud-Base-28-1.1.aarch64.qcow2 \
> - Fedora-Cloud-Base-29-1.2.x86_64.qcow2 \
> - Fedora-Cloud-Base-29-1.2.aarch64.qcow2 \
> - Fedora-Cloud-Base-30-1.2.x86_64.qcow2 \
> - Fedora-Cloud-Base-30-1.2.aarch64.qcow2 \
> - Fedora-Cloud-Base-31-1.9.x86_64.qcow2 \
> - Fedora-Cloud-Base-31-1.9.aarch64.qcow2 \
> - Fedora-Cloud-Base-32-1.6.x86_64.qcow2 \
> - Fedora-Cloud-Base-32-1.6.aarch64.qcow2 \
> - Fedora-Cloud-Base-33-1.2.x86_64.qcow2 \
> - Fedora-Cloud-Base-33-1.2.aarch64.qcow2 \
> - Fedora-Cloud-Base-34-1.2.x86_64.qcow2 \
> - Fedora-Cloud-Base-34-1.2.aarch64.qcow2 \
> - Fedora-Cloud-Base-35-1.2.x86_64.qcow2 \
> - Fedora-Cloud-Base-35-1.2.aarch64.qcow2
> -
> -OPENSUSE_IMGS = openSUSE-Leap-15.1-JeOS.x86_64-kvm-and-xen.qcow2 \
> - openSUSE-Leap-15.2-JeOS.x86_64-kvm-and-xen.qcow2 \
> - openSUSE-Leap-15.3-JeOS.x86_64-kvm-and-xen.qcow2 \
> - openSUSE-Tumbleweed-ARM-JeOS-efi.aarch64.raw.xz \
> - openSUSE-Tumbleweed-ARM-JeOS-efi.armv7l.raw.xz
> -
> -UBUNTU_OLD_IMGS = trusty-server-cloudimg-amd64-disk1.img \
> - trusty-server-cloudimg-i386-disk1.img \
> - trusty-server-cloudimg-ppc64el-disk1.img
> -UBUNTU_NEW_IMGS = xenial-server-cloudimg-powerpc-disk1.img \
> - jammy-server-cloudimg-s390x.img
> -UBUNTU_IMGS = $(UBUNTU_OLD_IMGS) $(UBUNTU_NEW_IMGS)
> -
> -DOWNLOAD_ASSETS = exeter mbuto podman \
> - $(DEBIAN_IMGS) $(FEDORA_IMGS) $(OPENSUSE_IMGS) $(UBUNTU_IMGS)
> +DOWNLOAD_ASSETS = exeter mbuto podman
> TESTDATA_ASSETS = small.bin big.bin medium.bin \
> rampstream
> LOCAL_ASSETS = mbuto.img mbuto.mem.img podman/bin/podman QEMU_EFI.fd \
> @@ -150,81 +106,3 @@ clean:
> realclean: clean
> rm -rf $(DOWNLOAD_ASSETS)
>
> -# 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-openstack-$*.qcow2
> -
> -debian-10-nocloud-%.qcow2:
> - $(WGET) -O $@ https://cloud.debian.org/images/cloud/buster/latest/debian-10-nocloud-$*.qcow2
> -
> -debian-10-generic-ppc64el-20220911-1135.qcow2:
> - $(WGET) -O $@ https://cloud.debian.org/images/cloud/buster/20220911-1135/debian-10-generic-ppc64el-20220911-1135.qcow2
> -
> -debian-10-generic-%.qcow2:
> - $(WGET) -O $@ https://cloud.debian.org/images/cloud/buster/latest/debian-10-generic-$*.qcow2
> -
> -debian-11-nocloud-%.qcow2:
> - $(WGET) -O $@ https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-nocloud-$*.qcow2
> -
> -debian-11-generic-%.qcow2:
> - $(WGET) -O $@ https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-generic-$*.qcow2
> -
> -debian-sid-nocloud-%-daily.qcow2:
> - $(WGET) -O $@ https://cloud.debian.org/images/cloud/sid/daily/latest/debian-sid-nocloud-$*-daily.qcow2
> -
> -# Fedora downloads
> -Fedora-Cloud-Base-26-1.5.%.qcow2:
> - $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/26/CloudImages/$*/images/Fedora-Cloud-Base-26-1.5.$*.qcow2
> -
> -Fedora-Cloud-Base-27-1.6.%.qcow2:
> - $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/27/CloudImages/$*/images/Fedora-Cloud-Base-27-1.6.$*.qcow2
> -
> -Fedora-Cloud-Base-28-1.1.%.qcow2:
> - $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/28/Cloud/$*/images/Fedora-Cloud-Base-28-1.1.$*.qcow2
> -
> -Fedora-Cloud-Base-29-1.2.%.qcow2:
> - $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/29/Cloud/$*/images/Fedora-Cloud-Base-29-1.2.$*.qcow2
> -
> -Fedora-Cloud-Base-30-1.2.%.qcow2:
> - $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/30/Cloud/$*/images/Fedora-Cloud-Base-30-1.2.$*.qcow2
> -
> -Fedora-Cloud-Base-31-1.9.%.qcow2:
> - $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/31/Cloud/$*/images/Fedora-Cloud-Base-31-1.9.$*.qcow2
> -
> -Fedora-Cloud-Base-32-1.6.%.qcow2:
> - $(WGET) -O $@ https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/32/Cloud/$*/images/Fedora-Cloud-Base-32-1.6.$*.qcow2
> -
> -Fedora-Cloud-Base-33-1.2.%.qcow2:
> - $(WGET) -O $@ https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/33/Cloud/$*/images/Fedora-Cloud-Base-33-1.2.$*.qcow2
> -
> -Fedora-Cloud-Base-34-1.2.%.qcow2:
> - $(WGET) -O $@ https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/34/Cloud/$*/images/Fedora-Cloud-Base-34-1.2.$*.qcow2
> -
> -Fedora-Cloud-Base-35-1.2.%.qcow2:
> - $(WGET) -O $@ https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/35/Cloud/$*/images/Fedora-Cloud-Base-35-1.2.$*.qcow2
> -
> -# OpenSuSE downloads
> -openSUSE-Leap-15.1-JeOS.x86_64-kvm-and-xen.qcow2:
> - $(WGET) -O $@ https://download.opensuse.org/distribution/leap/15.1/jeos/openSUSE-Leap-15.1-JeOS.x86_64-kvm-and-xen.qcow2
> -
> -openSUSE-Leap-15.2-JeOS.x86_64-kvm-and-xen.qcow2:
> - $(WGET) -O $@ https://download.opensuse.org/distribution/leap/15.2/appliances/openSUSE-Leap-15.2-JeOS.x86_64-kvm-and-xen.qcow2
> -
> -openSUSE-Leap-15.3-JeOS.x86_64-kvm-and-xen.qcow2:
> - $(WGET) -O $@ https://download.opensuse.org/distribution/leap/15.3/appliances/openSUSE-Leap-15.3-JeOS.x86_64-kvm-and-xen.qcow2
> -
> -openSUSE-Tumbleweed-ARM-JeOS-efi.aarch64.raw.xz:
> - $(WGET) -O $@ http://download.opensuse.org/ports/aarch64/tumbleweed/appliances/openSUSE-Tumbleweed-ARM-JeOS-efi.aarch64.raw.xz
> -
> -openSUSE-Tumbleweed-ARM-JeOS-efi.armv7l.raw.xz:
> - $(WGET) -O $@ http://download.opensuse.org/ports/armv7hl/tumbleweed/appliances/openSUSE-Tumbleweed-ARM-JeOS-efi.armv7l.raw.xz
> -
> -# Ubuntu downloads
> -trusty-server-cloudimg-%-disk1.img:
> - $(WGET) -O $@ https://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-$*-disk1.img
> -
> -xenial-server-cloudimg-powerpc-disk1.img:
> - $(WGET) -O $@ https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-powerpc-disk1.img
> -
> -jammy-server-cloudimg-s390x.img:
> - $(WGET) -O $@ https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-s390x.img
> --
> 2.47.0
>
--
David Gibson (he or they) | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you, not the other way
| around.
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] test: Remove unused distro images
2025-09-08 7:09 ` David Gibson
@ 2025-09-08 7:56 ` Yumei Huang
2025-09-08 8:02 ` Stefano Brivio
1 sibling, 0 replies; 7+ messages in thread
From: Yumei Huang @ 2025-09-08 7:56 UTC (permalink / raw)
To: David Gibson; +Cc: passt-dev, sbrivio, dgibson
On Mon, Sep 8, 2025 at 3:10 PM David Gibson <david@gibson.dropbear.id.au> wrote:
>
> On Mon, Sep 08, 2025 at 02:09:21PM +0800, Yumei Huang wrote:
> > Some of the download links are broken, and none of the images are
> > used in current tests. Removing them so it won't block make.
> >
> > Signed-off-by: Yumei Huang <yuhuang@redhat.com>
>
> Ah, sorry. I realised I forgot some information when I suggested you
> make this change.
>
> Although we're not using these images at the moment, we hope to use
> them again some time in future. For that reason it's useful to keep
> the information about what the images were and how they worked in
> place.
>
> So, rather than removing this completely, it would be better to keep
> the {DEBIAN,...}_IMGS variables and the download targets, but just
> don't include them in DOWNLOAD_ASSETS for now. That will make it
> easier to put a fixed version of this back when we're ready.
Makes sense. I’ve updated the patch accordingly in v2, thanks!
>
> > ---
> > test/Makefile | 124 +-------------------------------------------------
> > 1 file changed, 1 insertion(+), 123 deletions(-)
> >
> > diff --git a/test/Makefile b/test/Makefile
> > index a774285..d7c37d6 100644
> > --- a/test/Makefile
> > +++ b/test/Makefile
> > @@ -9,51 +9,7 @@ BATS = bats -j $(shell nproc)
> > EXETOOL = exeter/exetool/exetool
> > WGET = wget -c
> >
> > -DEBIAN_IMGS = debian-8.11.0-openstack-amd64.qcow2 \
> > - debian-10-nocloud-amd64.qcow2 \
> > - debian-10-generic-arm64.qcow2 \
> > - debian-10-generic-ppc64el-20220911-1135.qcow2 \
> > - debian-11-nocloud-amd64.qcow2 \
> > - debian-11-generic-arm64.qcow2 \
> > - debian-11-generic-ppc64el.qcow2 \
> > - debian-sid-nocloud-amd64-daily.qcow2 \
> > - debian-sid-nocloud-arm64-daily.qcow2 \
> > - debian-sid-nocloud-ppc64el-daily.qcow2
> > -
> > -FEDORA_IMGS = Fedora-Cloud-Base-26-1.5.x86_64.qcow2 \
> > - Fedora-Cloud-Base-27-1.6.x86_64.qcow2 \
> > - Fedora-Cloud-Base-28-1.1.x86_64.qcow2 \
> > - Fedora-Cloud-Base-28-1.1.aarch64.qcow2 \
> > - Fedora-Cloud-Base-29-1.2.x86_64.qcow2 \
> > - Fedora-Cloud-Base-29-1.2.aarch64.qcow2 \
> > - Fedora-Cloud-Base-30-1.2.x86_64.qcow2 \
> > - Fedora-Cloud-Base-30-1.2.aarch64.qcow2 \
> > - Fedora-Cloud-Base-31-1.9.x86_64.qcow2 \
> > - Fedora-Cloud-Base-31-1.9.aarch64.qcow2 \
> > - Fedora-Cloud-Base-32-1.6.x86_64.qcow2 \
> > - Fedora-Cloud-Base-32-1.6.aarch64.qcow2 \
> > - Fedora-Cloud-Base-33-1.2.x86_64.qcow2 \
> > - Fedora-Cloud-Base-33-1.2.aarch64.qcow2 \
> > - Fedora-Cloud-Base-34-1.2.x86_64.qcow2 \
> > - Fedora-Cloud-Base-34-1.2.aarch64.qcow2 \
> > - Fedora-Cloud-Base-35-1.2.x86_64.qcow2 \
> > - Fedora-Cloud-Base-35-1.2.aarch64.qcow2
> > -
> > -OPENSUSE_IMGS = openSUSE-Leap-15.1-JeOS.x86_64-kvm-and-xen.qcow2 \
> > - openSUSE-Leap-15.2-JeOS.x86_64-kvm-and-xen.qcow2 \
> > - openSUSE-Leap-15.3-JeOS.x86_64-kvm-and-xen.qcow2 \
> > - openSUSE-Tumbleweed-ARM-JeOS-efi.aarch64.raw.xz \
> > - openSUSE-Tumbleweed-ARM-JeOS-efi.armv7l.raw.xz
> > -
> > -UBUNTU_OLD_IMGS = trusty-server-cloudimg-amd64-disk1.img \
> > - trusty-server-cloudimg-i386-disk1.img \
> > - trusty-server-cloudimg-ppc64el-disk1.img
> > -UBUNTU_NEW_IMGS = xenial-server-cloudimg-powerpc-disk1.img \
> > - jammy-server-cloudimg-s390x.img
> > -UBUNTU_IMGS = $(UBUNTU_OLD_IMGS) $(UBUNTU_NEW_IMGS)
> > -
> > -DOWNLOAD_ASSETS = exeter mbuto podman \
> > - $(DEBIAN_IMGS) $(FEDORA_IMGS) $(OPENSUSE_IMGS) $(UBUNTU_IMGS)
> > +DOWNLOAD_ASSETS = exeter mbuto podman
> > TESTDATA_ASSETS = small.bin big.bin medium.bin \
> > rampstream
> > LOCAL_ASSETS = mbuto.img mbuto.mem.img podman/bin/podman QEMU_EFI.fd \
> > @@ -150,81 +106,3 @@ clean:
> > realclean: clean
> > rm -rf $(DOWNLOAD_ASSETS)
> >
> > -# 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-openstack-$*.qcow2
> > -
> > -debian-10-nocloud-%.qcow2:
> > - $(WGET) -O $@ https://cloud.debian.org/images/cloud/buster/latest/debian-10-nocloud-$*.qcow2
> > -
> > -debian-10-generic-ppc64el-20220911-1135.qcow2:
> > - $(WGET) -O $@ https://cloud.debian.org/images/cloud/buster/20220911-1135/debian-10-generic-ppc64el-20220911-1135.qcow2
> > -
> > -debian-10-generic-%.qcow2:
> > - $(WGET) -O $@ https://cloud.debian.org/images/cloud/buster/latest/debian-10-generic-$*.qcow2
> > -
> > -debian-11-nocloud-%.qcow2:
> > - $(WGET) -O $@ https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-nocloud-$*.qcow2
> > -
> > -debian-11-generic-%.qcow2:
> > - $(WGET) -O $@ https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-generic-$*.qcow2
> > -
> > -debian-sid-nocloud-%-daily.qcow2:
> > - $(WGET) -O $@ https://cloud.debian.org/images/cloud/sid/daily/latest/debian-sid-nocloud-$*-daily.qcow2
> > -
> > -# Fedora downloads
> > -Fedora-Cloud-Base-26-1.5.%.qcow2:
> > - $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/26/CloudImages/$*/images/Fedora-Cloud-Base-26-1.5.$*.qcow2
> > -
> > -Fedora-Cloud-Base-27-1.6.%.qcow2:
> > - $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/27/CloudImages/$*/images/Fedora-Cloud-Base-27-1.6.$*.qcow2
> > -
> > -Fedora-Cloud-Base-28-1.1.%.qcow2:
> > - $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/28/Cloud/$*/images/Fedora-Cloud-Base-28-1.1.$*.qcow2
> > -
> > -Fedora-Cloud-Base-29-1.2.%.qcow2:
> > - $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/29/Cloud/$*/images/Fedora-Cloud-Base-29-1.2.$*.qcow2
> > -
> > -Fedora-Cloud-Base-30-1.2.%.qcow2:
> > - $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/30/Cloud/$*/images/Fedora-Cloud-Base-30-1.2.$*.qcow2
> > -
> > -Fedora-Cloud-Base-31-1.9.%.qcow2:
> > - $(WGET) -O $@ http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/31/Cloud/$*/images/Fedora-Cloud-Base-31-1.9.$*.qcow2
> > -
> > -Fedora-Cloud-Base-32-1.6.%.qcow2:
> > - $(WGET) -O $@ https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/32/Cloud/$*/images/Fedora-Cloud-Base-32-1.6.$*.qcow2
> > -
> > -Fedora-Cloud-Base-33-1.2.%.qcow2:
> > - $(WGET) -O $@ https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/33/Cloud/$*/images/Fedora-Cloud-Base-33-1.2.$*.qcow2
> > -
> > -Fedora-Cloud-Base-34-1.2.%.qcow2:
> > - $(WGET) -O $@ https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/34/Cloud/$*/images/Fedora-Cloud-Base-34-1.2.$*.qcow2
> > -
> > -Fedora-Cloud-Base-35-1.2.%.qcow2:
> > - $(WGET) -O $@ https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/35/Cloud/$*/images/Fedora-Cloud-Base-35-1.2.$*.qcow2
> > -
> > -# OpenSuSE downloads
> > -openSUSE-Leap-15.1-JeOS.x86_64-kvm-and-xen.qcow2:
> > - $(WGET) -O $@ https://download.opensuse.org/distribution/leap/15.1/jeos/openSUSE-Leap-15.1-JeOS.x86_64-kvm-and-xen.qcow2
> > -
> > -openSUSE-Leap-15.2-JeOS.x86_64-kvm-and-xen.qcow2:
> > - $(WGET) -O $@ https://download.opensuse.org/distribution/leap/15.2/appliances/openSUSE-Leap-15.2-JeOS.x86_64-kvm-and-xen.qcow2
> > -
> > -openSUSE-Leap-15.3-JeOS.x86_64-kvm-and-xen.qcow2:
> > - $(WGET) -O $@ https://download.opensuse.org/distribution/leap/15.3/appliances/openSUSE-Leap-15.3-JeOS.x86_64-kvm-and-xen.qcow2
> > -
> > -openSUSE-Tumbleweed-ARM-JeOS-efi.aarch64.raw.xz:
> > - $(WGET) -O $@ http://download.opensuse.org/ports/aarch64/tumbleweed/appliances/openSUSE-Tumbleweed-ARM-JeOS-efi.aarch64.raw.xz
> > -
> > -openSUSE-Tumbleweed-ARM-JeOS-efi.armv7l.raw.xz:
> > - $(WGET) -O $@ http://download.opensuse.org/ports/armv7hl/tumbleweed/appliances/openSUSE-Tumbleweed-ARM-JeOS-efi.armv7l.raw.xz
> > -
> > -# Ubuntu downloads
> > -trusty-server-cloudimg-%-disk1.img:
> > - $(WGET) -O $@ https://cloud-images.ubuntu.com/trusty/current/trusty-server-cloudimg-$*-disk1.img
> > -
> > -xenial-server-cloudimg-powerpc-disk1.img:
> > - $(WGET) -O $@ https://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-powerpc-disk1.img
> > -
> > -jammy-server-cloudimg-s390x.img:
> > - $(WGET) -O $@ https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-s390x.img
> > --
> > 2.47.0
> >
>
> --
> David Gibson (he or they) | I'll have my music baroque, and my code
> david AT gibson.dropbear.id.au | minimalist, thank you, not the other way
> | around.
> http://www.ozlabs.org/~dgibson
--
Thanks,
Yumei Huang
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] test: Remove unused distro images
2025-09-08 7:09 ` David Gibson
2025-09-08 7:56 ` Yumei Huang
@ 2025-09-08 8:02 ` Stefano Brivio
2025-09-08 8:19 ` David Gibson
1 sibling, 1 reply; 7+ messages in thread
From: Stefano Brivio @ 2025-09-08 8:02 UTC (permalink / raw)
To: David Gibson; +Cc: Yumei Huang, passt-dev, dgibson
On Mon, 8 Sep 2025 17:09:57 +1000
David Gibson <david@gibson.dropbear.id.au> wrote:
> On Mon, Sep 08, 2025 at 02:09:21PM +0800, Yumei Huang wrote:
> > Some of the download links are broken, and none of the images are
> > used in current tests. Removing them so it won't block make.
> >
> > Signed-off-by: Yumei Huang <yuhuang@redhat.com>
>
> Ah, sorry. I realised I forgot some information when I suggested you
> make this change.
>
> Although we're not using these images at the moment, we hope to use
> them again some time in future. For that reason it's useful to keep
> the information about what the images were and how they worked in
> place.
>
> So, rather than removing this completely, it would be better to keep
> the {DEBIAN,...}_IMGS variables and the download targets, but just
> don't include them in DOWNLOAD_ASSETS for now. That will make it
> easier to put a fixed version of this back when we're ready.
My suggestion from a couple of days ago:
https://archives.passt.top/passt-dev/20250820134427.6a16ad19@elisabeth/
was rather that we update the links. Not many of them are broken, and
it would be valuable to have test/distro working again. Is that
unfeasible for some other reason?
--
Stefano
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] test: Remove unused distro images
2025-09-08 8:02 ` Stefano Brivio
@ 2025-09-08 8:19 ` David Gibson
2025-09-08 9:23 ` Stefano Brivio
0 siblings, 1 reply; 7+ messages in thread
From: David Gibson @ 2025-09-08 8:19 UTC (permalink / raw)
To: Stefano Brivio; +Cc: Yumei Huang, passt-dev, dgibson
[-- Attachment #1: Type: text/plain, Size: 1877 bytes --]
On Mon, Sep 08, 2025 at 10:02:19AM +0200, Stefano Brivio wrote:
> On Mon, 8 Sep 2025 17:09:57 +1000
> David Gibson <david@gibson.dropbear.id.au> wrote:
>
> > On Mon, Sep 08, 2025 at 02:09:21PM +0800, Yumei Huang wrote:
> > > Some of the download links are broken, and none of the images are
> > > used in current tests. Removing them so it won't block make.
> > >
> > > Signed-off-by: Yumei Huang <yuhuang@redhat.com>
> >
> > Ah, sorry. I realised I forgot some information when I suggested you
> > make this change.
> >
> > Although we're not using these images at the moment, we hope to use
> > them again some time in future. For that reason it's useful to keep
> > the information about what the images were and how they worked in
> > place.
> >
> > So, rather than removing this completely, it would be better to keep
> > the {DEBIAN,...}_IMGS variables and the download targets, but just
> > don't include them in DOWNLOAD_ASSETS for now. That will make it
> > easier to put a fixed version of this back when we're ready.
>
> My suggestion from a couple of days ago:
>
> https://archives.passt.top/passt-dev/20250820134427.6a16ad19@elisabeth/
>
> was rather that we update the links. Not many of them are broken, and
> it would be valuable to have test/distro working again. Is that
> unfeasible for some other reason?
Not in principle, I think. It is, however, pretty miserable for me to
test: even before the links broke it was achingly slow for me to
download all the images in Australia. Don't know what it's like in
China. This was just the fastest way to stop this being a blocker for
anyone new to the project.
--
David Gibson (he or they) | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you, not the other way
| around.
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] test: Remove unused distro images
2025-09-08 8:19 ` David Gibson
@ 2025-09-08 9:23 ` Stefano Brivio
2025-09-08 11:39 ` Yumei Huang
0 siblings, 1 reply; 7+ messages in thread
From: Stefano Brivio @ 2025-09-08 9:23 UTC (permalink / raw)
To: David Gibson, Yumei Huang; +Cc: passt-dev, dgibson
On Mon, 8 Sep 2025 18:19:51 +1000
David Gibson <david@gibson.dropbear.id.au> wrote:
> On Mon, Sep 08, 2025 at 10:02:19AM +0200, Stefano Brivio wrote:
> > On Mon, 8 Sep 2025 17:09:57 +1000
> > David Gibson <david@gibson.dropbear.id.au> wrote:
> >
> > > On Mon, Sep 08, 2025 at 02:09:21PM +0800, Yumei Huang wrote:
> > > > Some of the download links are broken, and none of the images are
> > > > used in current tests. Removing them so it won't block make.
> > > >
> > > > Signed-off-by: Yumei Huang <yuhuang@redhat.com>
> > >
> > > Ah, sorry. I realised I forgot some information when I suggested you
> > > make this change.
> > >
> > > Although we're not using these images at the moment, we hope to use
> > > them again some time in future. For that reason it's useful to keep
> > > the information about what the images were and how they worked in
> > > place.
> > >
> > > So, rather than removing this completely, it would be better to keep
> > > the {DEBIAN,...}_IMGS variables and the download targets, but just
> > > don't include them in DOWNLOAD_ASSETS for now. That will make it
> > > easier to put a fixed version of this back when we're ready.
> >
> > My suggestion from a couple of days ago:
> >
> > https://archives.passt.top/passt-dev/20250820134427.6a16ad19@elisabeth/
> >
> > was rather that we update the links. Not many of them are broken, and
> > it would be valuable to have test/distro working again. Is that
> > unfeasible for some other reason?
>
> Not in principle, I think. It is, however, pretty miserable for me to
> test: even before the links broke it was achingly slow for me to
> download all the images in Australia. Don't know what it's like in
> China.
I guess it's similar: if you have mirrors nearby, then it's fast,
otherwise it's slow.
I actually ran all this (without your changes to cache things, so
downloading every time) on a machine in Beijing a few years ago, and
most downloads were very fast (all the Debian ones at least), some
other ones (some of the old Fedora ones, I think) pretty slow.
> This was just the fastest way to stop this being a blocker for
> anyone new to the project.
Sure, that's the most important thing. We can proceed in two ways, I
guess:
1. we go ahead and apply this and make it my priority to fix the rest
myself (old Fedora downloads are slow for me as well, but I don't
care that much)
2. Yumei gives it a try with fixing download links, if it's doable from
China, and after that (probably) broken tests. If it's not doable, 1.
is absolutely fine!
...let me know if 2. might make sense.
--
Stefano
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] test: Remove unused distro images
2025-09-08 9:23 ` Stefano Brivio
@ 2025-09-08 11:39 ` Yumei Huang
0 siblings, 0 replies; 7+ messages in thread
From: Yumei Huang @ 2025-09-08 11:39 UTC (permalink / raw)
To: Stefano Brivio; +Cc: David Gibson, passt-dev, dgibson
Just sent a new patch to fix the broken link. Tested on my test
machine, and all images got downloaded successfully.
Please help review, thanks!
On Mon, Sep 8, 2025 at 5:23 PM Stefano Brivio <sbrivio@redhat.com> wrote:
>
> On Mon, 8 Sep 2025 18:19:51 +1000
> David Gibson <david@gibson.dropbear.id.au> wrote:
>
> > On Mon, Sep 08, 2025 at 10:02:19AM +0200, Stefano Brivio wrote:
> > > On Mon, 8 Sep 2025 17:09:57 +1000
> > > David Gibson <david@gibson.dropbear.id.au> wrote:
> > >
> > > > On Mon, Sep 08, 2025 at 02:09:21PM +0800, Yumei Huang wrote:
> > > > > Some of the download links are broken, and none of the images are
> > > > > used in current tests. Removing them so it won't block make.
> > > > >
> > > > > Signed-off-by: Yumei Huang <yuhuang@redhat.com>
> > > >
> > > > Ah, sorry. I realised I forgot some information when I suggested you
> > > > make this change.
> > > >
> > > > Although we're not using these images at the moment, we hope to use
> > > > them again some time in future. For that reason it's useful to keep
> > > > the information about what the images were and how they worked in
> > > > place.
> > > >
> > > > So, rather than removing this completely, it would be better to keep
> > > > the {DEBIAN,...}_IMGS variables and the download targets, but just
> > > > don't include them in DOWNLOAD_ASSETS for now. That will make it
> > > > easier to put a fixed version of this back when we're ready.
> > >
> > > My suggestion from a couple of days ago:
> > >
> > > https://archives.passt.top/passt-dev/20250820134427.6a16ad19@elisabeth/
> > >
> > > was rather that we update the links. Not many of them are broken, and
> > > it would be valuable to have test/distro working again. Is that
> > > unfeasible for some other reason?
> >
> > Not in principle, I think. It is, however, pretty miserable for me to
> > test: even before the links broke it was achingly slow for me to
> > download all the images in Australia. Don't know what it's like in
> > China.
>
> I guess it's similar: if you have mirrors nearby, then it's fast,
> otherwise it's slow.
>
> I actually ran all this (without your changes to cache things, so
> downloading every time) on a machine in Beijing a few years ago, and
> most downloads were very fast (all the Debian ones at least), some
> other ones (some of the old Fedora ones, I think) pretty slow.
>
> > This was just the fastest way to stop this being a blocker for
> > anyone new to the project.
>
> Sure, that's the most important thing. We can proceed in two ways, I
> guess:
>
> 1. we go ahead and apply this and make it my priority to fix the rest
> myself (old Fedora downloads are slow for me as well, but I don't
> care that much)
>
> 2. Yumei gives it a try with fixing download links, if it's doable from
> China, and after that (probably) broken tests. If it's not doable, 1.
> is absolutely fine!
>
> ...let me know if 2. might make sense.
>
> --
> Stefano
>
--
Thanks,
Yumei Huang
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-09-08 11:39 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-09-08 6:09 [PATCH] test: Remove unused distro images Yumei Huang
2025-09-08 7:09 ` David Gibson
2025-09-08 7:56 ` Yumei Huang
2025-09-08 8:02 ` Stefano Brivio
2025-09-08 8:19 ` David Gibson
2025-09-08 9:23 ` Stefano Brivio
2025-09-08 11:39 ` Yumei Huang
Code repositories for project(s) associated with this public inbox
https://passt.top/passt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).