summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2022-04-25 11:30:14 -0400
committerChris Evich <cevich@redhat.com>2022-04-25 11:30:14 -0400
commit2f53259a8d5cd8022e797ea22a354a63bef1803a (patch)
treef9f05f45220aaa2dfa69944e6028d783e2a4e5df /contrib
parent9784d97bd6cef590de781575992f7a685ab1c2c2 (diff)
downloadpodman-2f53259a8d5cd8022e797ea22a354a63bef1803a.tar.gz
podman-2f53259a8d5cd8022e797ea22a354a63bef1803a.tar.bz2
podman-2f53259a8d5cd8022e797ea22a354a63bef1803a.zip
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>
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/cirrus/runner.sh1
1 files changed, 1 insertions, 0 deletions
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
}