From: Jim Newsome Date: Thu, 24 Oct 2024 14:53:19 +0000 (-0500) Subject: Use pip to install chutney's python dependencies X-Git-Tag: tor-0.4.8.14~10^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09e91e2f5691c5770ff88a58557cc5eca054ab93;p=thirdparty%2Ftor.git Use pip to install chutney's python dependencies --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7af5aa873d..82176a1bfd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -110,6 +110,10 @@ variables: if [ "$CHUTNEY" = yes ]; then git clone --depth 1 https://gitlab.torproject.org/tpo/core/chutney.git 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 fi - if [ "$TRACING" = yes ]; then apt install liblttng-ust-dev; fi