summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-01-31 15:26:32 -0500
committerGitHub <noreply@github.com>2022-01-31 15:26:32 -0500
commit271867263c334460ee404cc5059a9453e47171f7 (patch)
tree2531e61df56b930810beba64681fc66604752152
parentcb0f31624ce5a04af5958e386b5256c86784ad54 (diff)
parente7bdd1260b975738e0a6d491c227f1a3cd5fb9fb (diff)
downloadpodman-271867263c334460ee404cc5059a9453e47171f7.tar.gz
podman-271867263c334460ee404cc5059a9453e47171f7.tar.bz2
podman-271867263c334460ee404cc5059a9453e47171f7.zip
Merge pull request #13091 from lsm5/fix-nightly-ci-builds
CI: fix nightly builds
-rwxr-xr-xcontrib/cirrus/setup_environment.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/cirrus/setup_environment.sh b/contrib/cirrus/setup_environment.sh
index 44c821bc1..6a3597402 100755
--- a/contrib/cirrus/setup_environment.sh
+++ b/contrib/cirrus/setup_environment.sh
@@ -252,11 +252,11 @@ case "$TEST_FLAVOR" in
die "Refusing to config. host-test in container";
fi
remove_packaged_podman_files
- make install PREFIX=/usr ETCDIR=/etc
+ make && make install PREFIX=/usr ETCDIR=/etc
elif [[ "$TEST_ENVIRON" == "container" ]]; then
if ((CONTAINER)); then
remove_packaged_podman_files
- make install PREFIX=/usr ETCDIR=/etc
+ make && make install PREFIX=/usr ETCDIR=/etc
fi
else
die "Invalid value for $$TEST_ENVIRON=$TEST_ENVIRON"
@@ -273,7 +273,7 @@ case "$TEST_FLAVOR" in
# Ref: https://gitlab.com/gitlab-org/gitlab-runner/-/issues/27270#note_499585550
remove_packaged_podman_files
- make install PREFIX=/usr ETCDIR=/etc
+ make && make install PREFIX=/usr ETCDIR=/etc
msg "Installing docker and containerd"
# N/B: Tests check/expect `docker info` output, and this `!= podman info`