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 <cevich@redhat.com>
This commit is contained in:
Chris Evich 2022-04-25 11:30:14 -04:00
parent 9784d97bd6
commit 2f53259a8d
No known key found for this signature in database
GPG key ID: 03EDC70FD578067F

View file

@ -121,6 +121,7 @@ function _run_bindings() {
function _run_docker-py() {
source .venv/docker-py/bin/activate
make binaries
make run-docker-py-tests
}