mirror of
https://github.com/containers/podman.git
synced 2025-11-30 18:18:18 +08:00
...for debugging #24147, because "md5sum mismatch" is not the best way to troubleshoot bytestream differences. socat is run on the container, so this requires building a new testimage (20241011). Bump to new CI VMs[1] which include it. [1] https://github.com/containers/automation_images/pull/389 Signed-off-by: Ed Santiago <santiago@redhat.com>
15 lines
498 B
Go
15 lines
498 B
Go
//go:build linux || freebsd
|
|
|
|
package integration
|
|
|
|
var (
|
|
STORAGE_FS = "overlay"
|
|
STORAGE_OPTIONS = "--storage-driver overlay"
|
|
ROOTLESS_STORAGE_FS = "overlay"
|
|
CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, NGINX_IMAGE, REDIS_IMAGE, INFRA_IMAGE, CITEST_IMAGE}
|
|
NGINX_IMAGE = "quay.io/libpod/alpine_nginx-ppc64le:latest"
|
|
BB_GLIBC = "docker.io/ppc64le/busybox:glibc"
|
|
CITEST_IMAGE = "quay.io/libpod/testimage:20241011"
|
|
REGISTRY_IMAGE string
|
|
)
|