diff options
author | Ed Santiago <santiago@redhat.com> | 2021-07-19 15:02:22 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2021-07-20 07:10:14 -0600 |
commit | 2b98a226b9142d398b75bb3b94a59e56889e21d2 (patch) | |
tree | 511f15067ce4d042fe11b117e8fa25f0ef89cc27 | |
parent | caf03fd7a4766b08fcadd0f2d152f3910a7583e0 (diff) | |
download | podman-2b98a226b9142d398b75bb3b94a59e56889e21d2.tar.gz podman-2b98a226b9142d398b75bb3b94a59e56889e21d2.tar.bz2 podman-2b98a226b9142d398b75bb3b94a59e56889e21d2.zip |
system test: auto-update: multiarch fixes
auto-update test is failing on non-x86_64 arch:
https://gitlab.com/cki-project/kernel-tests/-/issues/614#note_630010734
Reason: test was relying on alpine_nginx image; this is
a custom libpod image that only has a x86_64 version.
Solution: use busybox instead. Busybox was copied from
docker.io using skopeo copy --all, so it has all arches.
Signed-off-by: Ed Santiago <santiago@redhat.com>
-rw-r--r-- | test/system/255-auto-update.bats | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/255-auto-update.bats b/test/system/255-auto-update.bats index b47e72b30..4d7a8e783 100644 --- a/test/system/255-auto-update.bats +++ b/test/system/255-auto-update.bats @@ -36,7 +36,7 @@ function teardown() { rm -f $SNAME_FILE run_podman ? rmi quay.io/libpod/alpine:latest - run_podman ? rmi quay.io/libpod/alpine_nginx:latest + run_podman ? rmi quay.io/libpod/busybox:latest run_podman ? rmi quay.io/libpod/localtest:latest basic_teardown } @@ -191,7 +191,7 @@ function _confirm_update() { do local img_base="alpine" if [[ $auto_update == "registry" ]]; then - img_base="alpine_nginx" + img_base="busybox" elif [[ $auto_update == "local" ]]; then img_base="localtest" fi |