From 2f53259a8d5cd8022e797ea22a354a63bef1803a Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Mon, 25 Apr 2022 11:30:14 -0400 Subject: Cirrus: Fix cirrus cache race on bin/podman A suspected race on uploading gopath cache is causing the docker-py (and possibly other) tasks to fail unpredictably with an error from `make` regarding missing `bin/podman`. Since this failure is affecting all development activity, apply a quick/dirty fix to the failing task, by simply rebuilding the binary. A more comprehensive/long-term fix will be worked in a future PR. Signed-off-by: Chris Evich --- contrib/cirrus/runner.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'contrib/cirrus') diff --git a/contrib/cirrus/runner.sh b/contrib/cirrus/runner.sh index aee9bcfbb..1953c477e 100755 --- a/contrib/cirrus/runner.sh +++ b/contrib/cirrus/runner.sh @@ -121,6 +121,7 @@ function _run_bindings() { function _run_docker-py() { source .venv/docker-py/bin/activate + make binaries make run-docker-py-tests } -- cgit v1.2.3-54-g00ecf