[PATCH] test: Fix the download link for debian-11-generic-ppc64el image
Signed-off-by: Yumei Huang
On Mon, Sep 08, 2025 at 07:34:46PM +0800, Yumei Huang wrote:
Signed-off-by: Yumei Huang
Tested-by: David Gibson
--- test/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/test/Makefile b/test/Makefile index a774285..4938827 100644 --- a/test/Makefile +++ b/test/Makefile @@ -15,7 +15,7 @@ DEBIAN_IMGS = debian-8.11.0-openstack-amd64.qcow2 \ debian-10-generic-ppc64el-20220911-1135.qcow2 \ debian-11-nocloud-amd64.qcow2 \ debian-11-generic-arm64.qcow2 \ - debian-11-generic-ppc64el.qcow2 \ + debian-11-generic-ppc64el-20250703-2162.qcow2 \ debian-sid-nocloud-amd64-daily.qcow2 \ debian-sid-nocloud-arm64-daily.qcow2 \ debian-sid-nocloud-ppc64el-daily.qcow2 @@ -169,6 +169,9 @@ debian-11-nocloud-%.qcow2: debian-11-generic-%.qcow2: $(WGET) -O $@ https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-generic-$*.q...
+debian-11-generic-ppc64el-20250703-2162.qcow2: + $(WGET) -O $@ https://cloud.debian.org/images/cloud/bullseye/20250703-2162/debian-11-gener... + debian-sid-nocloud-%-daily.qcow2: $(WGET) -O $@ https://cloud.debian.org/images/cloud/sid/daily/latest/debian-sid-nocloud-$*...
-- 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
On Mon, 8 Sep 2025 19:34:46 +0800
Yumei Huang
Signed-off-by: Yumei Huang
--- test/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
Applied. I was finally able to 'make assets', and I even managed to run most tests from test/distro/ (re-enabling them in the 'test/run' script). They all seem to fail for different reasons, but at least they run! I was afraid the breakage was more serious than this. I guess we might want to fix some, drop some if it's too much effort to fix things with very old distributions (say, Debian 9 or Fedora < 30), but I still think they are quite important as we want to find issues with distributions and older versions of kernel / C libraries and different endiannesses *before* we build packages, if possible. That is, even if we reach the point where major distributions run our tests as automated tests (Debian, Fedora and openSUSE run some of them as part of Podman tests already), that will be too late, or not ideal, because we'll already have those changes in the upstream repository. And, of course, with David's effort on the test framework, I hope that one day we'll just be able to run the whole testsuite on several distributions and architectures (not just build / smoke tests like the test/distro ones). By the way, I'm currently testing Alpine and Void Linux manually from time to time. The main value added there is that they use musl instead of glibc, and we actually break things quite often. -- Stefano
On Tue, Sep 09, 2025 at 10:24:32PM +0200, Stefano Brivio wrote:
On Mon, 8 Sep 2025 19:34:46 +0800 Yumei Huang
wrote: Signed-off-by: Yumei Huang
--- test/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Applied.
I'm not seeing the change. Did you forget to push? -- 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
On Wed, 10 Sep 2025 11:53:11 +1000
David Gibson
On Tue, Sep 09, 2025 at 10:24:32PM +0200, Stefano Brivio wrote:
On Mon, 8 Sep 2025 19:34:46 +0800 Yumei Huang
wrote: Signed-off-by: Yumei Huang
--- test/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Applied.
I'm not seeing the change. Did you forget to push?
Oops, for some reason I just ran the pre-push hook separately but didn't actually push. Done now. -- Stefano
participants (3)
-
David Gibson
-
Stefano Brivio
-
Yumei Huang