From ba05c2e56d125dcc38507a0fba898d26b5b8d3c1 Mon Sep 17 00:00:00 2001 From: Richard Alpe Date: Tue, 28 Apr 2026 10:06:03 +0200 Subject: [PATCH] test: avoid infamy0 race in CI by using random container names GitHub Actions sets $CI=true; treat it like -r so parallel jobs don't all try to claim "infamy0" and clobber each other. --- test/env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/env b/test/env index 56fca5ef9..cf4e3cace 100755 --- a/test/env +++ b/test/env @@ -122,7 +122,7 @@ name() nm=infamy id=0 - if [ -n "$random" ]; then + if [ -n "$random" ] || [ -n "$CI" ]; then # Let podman/docker allocate random hostname and container name return fi