From: Alexander Hansen Færøy Date: Tue, 18 Mar 2025 13:29:11 +0000 (+0100) Subject: CI: Install python3-venv. X-Git-Tag: tor-0.4.8.15~4^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a50fb35b6ccc05647f16dbdd28c51a6e51bb1b70;p=thirdparty%2Ftor.git CI: Install python3-venv. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a1c9b26149..7d35be8a39 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -115,9 +115,11 @@ variables: git clone --shallow-since "$CHUTNEY_SHALLOW_SINCE" https://gitlab.torproject.org/tpo/core/chutney.git git -C ./chutney checkout "$CHUTNEY_COMMIT" + + apt install python3-venv export CHUTNEY_PATH="$(pwd)/chutney" python3 -m venv venv - venv/bin/pip install --user ./chutney + venv/bin/pip install ./chutney fi - if [ "$TRACING" = yes ]; then apt install liblttng-ust-dev; fi