diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2023-02-14 10:37:12 +1100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2023-02-14 17:25:17 +0100 |
commit | 64325a0dac840a90f3045654797fbebc3f71a4b9 (patch) | |
tree | c13b70a34ff55e7f81f92e6fa4330399e0230e15 /test/Makefile | |
parent | 6ccab72d9b40bcbce21a77c2d61ed1a5080c2289 (diff) | |
download | passt-64325a0dac840a90f3045654797fbebc3f71a4b9.tar passt-64325a0dac840a90f3045654797fbebc3f71a4b9.tar.gz passt-64325a0dac840a90f3045654797fbebc3f71a4b9.tar.bz2 passt-64325a0dac840a90f3045654797fbebc3f71a4b9.tar.lz passt-64325a0dac840a90f3045654797fbebc3f71a4b9.tar.xz passt-64325a0dac840a90f3045654797fbebc3f71a4b9.tar.zst passt-64325a0dac840a90f3045654797fbebc3f71a4b9.zip |
test: Update location for Debian ppc64 images
The current debian cloud images no longer include ppc64. Change to using
the latest snapshot which does include ppc64.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 9f2bc42..2d170eb 100644 --- a/test/Makefile +++ b/test/Makefile @@ -11,7 +11,7 @@ DEBIAN_IMGS = debian-8.11.0-openstack-amd64.qcow2 \ debian-9-nocloud-amd64-daily-20200210-166.qcow2 \ debian-10-nocloud-amd64.qcow2 \ debian-10-generic-arm64.qcow2 \ - debian-10-generic-ppc64el.qcow2 \ + debian-10-generic-ppc64el-20220911-1135.qcow2 \ debian-11-nocloud-amd64.qcow2 \ debian-11-generic-arm64.qcow2 \ debian-11-generic-ppc64el.qcow2 \ @@ -127,6 +127,9 @@ debian-9-nocloud-%-daily-20200210-166.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 |