diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-10-09 06:14:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-09 06:14:17 -0400 |
commit | 71d675a164ee64111db1a9214673a3498b3aa123 (patch) | |
tree | 6a047ed67886d28899125717931869ee368eaeea /contrib/cirrus/runner.sh | |
parent | 2694fb85f46f43973672ed473b887c634819b71d (diff) | |
parent | 5b7c64cc97e8bf912c6ab7492827e2b871cb17d1 (diff) | |
download | podman-71d675a164ee64111db1a9214673a3498b3aa123.tar.gz podman-71d675a164ee64111db1a9214673a3498b3aa123.tar.bz2 podman-71d675a164ee64111db1a9214673a3498b3aa123.zip |
Merge pull request #7944 from cevich/new_get_ci_vm
Cirrus: Fix obtaining a CI VM
Diffstat (limited to 'contrib/cirrus/runner.sh')
-rwxr-xr-x | contrib/cirrus/runner.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/cirrus/runner.sh b/contrib/cirrus/runner.sh index 8a85acbd1..bfac8e7cb 100755 --- a/contrib/cirrus/runner.sh +++ b/contrib/cirrus/runner.sh @@ -139,6 +139,9 @@ function _run_vendor() { } function _run_build() { + # Ensure always start from clean-slate with all vendor modules downloaded + make clean + make vendor make podman-release make podman-remote-linux-release } |