Skip to content
Snippets Groups Projects
Commit 407991c8 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "CI: Pin docker to <7 in setup_gate.sh"

parents c0cddb09 70ebf95c
No related branches found
No related tags found
No related merge requests found
......@@ -123,10 +123,14 @@ EOF
sudo $CONTAINER_ENGINE run -d --net=host -e REGISTRY_HTTP_ADDR=0.0.0.0:4000 --restart=always -v /opt/kolla_registry/:/var/lib/registry --name registry registry:2
python3 -m venv ~/kolla-venv
. ~/kolla-venv/bin/activate
pip install "${KOLLA_SRC_DIR}" ${CONTAINER_ENGINE} rich
python3 -m venv ~/kolla-venv
source ~/kolla-venv/bin/activate
if [[ "$CONTAINER_ENGINE" == "docker" ]]; then
pip install "${KOLLA_SRC_DIR}" "docker<7"
else
pip install "${KOLLA_SRC_DIR}" "podman"
fi
sudo ~/kolla-venv/bin/kolla-build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment