diff options
author | Ed Santiago <santiago@redhat.com> | 2021-05-03 14:20:59 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2021-05-03 14:23:36 -0600 |
commit | 0c634ff33938b42e90afd2cb7edf876761ecc429 (patch) | |
tree | 314be4c3846ca820f06d411035c10aebdc557aaa /test/system/build-testimage | |
parent | b01ec314f58941c955a7b6f878ce995ab3239656 (diff) | |
download | podman-0c634ff33938b42e90afd2cb7edf876761ecc429.tar.gz podman-0c634ff33938b42e90afd2cb7edf876761ecc429.tar.bz2 podman-0c634ff33938b42e90afd2cb7edf876761ecc429.zip |
system test image: add arm64v8 image
The RHEL multi-arch team informed me that we were missing
aarch64; add it, using the new name (arm64v8).
(This is from last week, so the image date tag does not
match today's date. I was waiting for confirmation that
things were working).
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/system/build-testimage')
-rwxr-xr-x | test/system/build-testimage | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/system/build-testimage b/test/system/build-testimage index aac08e307..3e5b982ce 100755 --- a/test/system/build-testimage +++ b/test/system/build-testimage @@ -78,7 +78,7 @@ podman rmi -f testimage &> /dev/null || true # and because Dan says arch emulation is not currently working on podman # (no further details). # Arch emulation on Fedora requires the qemu-user-static package. -for arch in amd64 ppc64le s390x;do +for arch in amd64 arm64v8 ppc64le s390x;do ${BUILDAH} bud \ --arch=$arch \ --build-arg ARCH=$arch \ @@ -106,9 +106,9 @@ ${BUILDAH} manifest push --all ${remote_tag} docker://${remote_tag} # As of 2021-02-24 it is simply busybox, because it is super small, # but it's complicated because of multiarch: # -# img=quay.io/libpod/testimage:00000001 +# img=quay.io/libpod/testimage:0000000<current+1> # buildah manifest create $img -# for arch in amd64 ppc64le s390x;do +# for arch in amd64 arm64v8 ppc64le s390x;do # buildah pull --arch $arch docker.io/$arch/busybox:1.32.0 # buildah manifest add $img docker.io/$arch/busybox:1.32.0 # done |