From 4c27140794da2ec13832d6f93f39a29ae7b183d3 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 4 Dec 2020 10:02:43 -0800 Subject: [PATCH] Actually bump podman build timeout I tried to bump it before, but set it to 90, which is the default. Sigh. So this is an actual bump. It looks like until 20201124 this took about 80 seconds, now it's taking like 93. Signed-off-by: Adam Williamson --- tests/podman.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/podman.pm b/tests/podman.pm index 46b84fc1..c22f3d43 100644 --- a/tests/podman.pm +++ b/tests/podman.pm @@ -19,7 +19,7 @@ sub run { # create a Dockerfile assert_script_run 'printf \'FROM registry.fedoraproject.org/fedora:latest\nRUN /usr/bin/dnf install -y httpd\nEXPOSE 80\nCMD ["-D", "FOREGROUND"]\nENTRYPOINT ["/usr/sbin/httpd"]\n\' > Dockerfile'; # Build an image - assert_script_run 'podman build -t fedora-httpd $(pwd)', 90; + assert_script_run 'podman build -t fedora-httpd $(pwd)', 120; # Verify the image validate_script_output "podman images", sub { m/fedora-httpd/ }; # Run the container