Skip to content

Commit

Permalink
Merge pull request #13091 from lsm5/fix-nightly-ci-builds
Browse files Browse the repository at this point in the history
CI: fix nightly builds
  • Loading branch information
openshift-merge-robot authored Jan 31, 2022
2 parents cb0f316 + e7bdd12 commit 2718672
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contrib/cirrus/setup_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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`
Expand Down

0 comments on commit 2718672

Please sign in to comment.