Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
ci: Do not install virtcontainers with podman clh
Browse files Browse the repository at this point in the history
This PR skips the installation of virtcontainers in order to enable
the podman clh CI job.

Fixes #2704

Signed-off-by: Gabriela Cervantes <[email protected]>
  • Loading branch information
GabyCT committed May 28, 2020
1 parent 5cef3e7 commit e07a932
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/go-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ cidir=$(dirname "$0")
source "${cidir}/lib.sh"
export CI_JOB="${CI_JOB:-default}"

if [ "${CI_JOB}" != "PODMAN" ]; then
if [ "${CI_JOB}" != "PODMAN" ] && [ "${CI_JOB}" != "CLOUD-HYPERVISOR-PODMAN" ]; then
run_go_test
fi
2 changes: 1 addition & 1 deletion .ci/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pushd "${tests_repo_dir}"
.ci/setup.sh
popd

if [ "${CI_JOB}" != "PODMAN" ]; then
if [ "${CI_JOB}" != "PODMAN" ] && [ "${CI_JOB}" != "CLOUD-HYPERVISOR-PODMAN" ]; then
echo "Setup virtcontainers environment"
chronic sudo -E PATH=$PATH bash -c "${cidir}/../virtcontainers/utils/virtcontainers-setup.sh"

Expand Down

0 comments on commit e07a932

Please sign in to comment.