From: Alexander Hansen Færøy Date: Tue, 18 Mar 2025 13:25:41 +0000 (+0100) Subject: CI: Use local pip instead of python3-pip. X-Git-Tag: tor-0.4.8.15~4^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=141c8df513956b5928ba625dfdb984218b32093a;p=thirdparty%2Ftor.git CI: Use local pip instead of python3-pip. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4326866c6c..a1c9b26149 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -116,10 +116,8 @@ variables: git clone --shallow-since "$CHUTNEY_SHALLOW_SINCE" https://gitlab.torproject.org/tpo/core/chutney.git git -C ./chutney checkout "$CHUTNEY_COMMIT" export CHUTNEY_PATH="$(pwd)/chutney" - # Have pip install chutney's python dependencies by installing chutney - # itself. - apt-get install python3-pip - pip3 install --user ./chutney + python3 -m venv venv + venv/bin/pip install --user ./chutney fi - if [ "$TRACING" = yes ]; then apt install liblttng-ust-dev; fi