aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Newsome <jnewsome@torproject.org>2024-10-24 09:53:19 -0500
committerJim Newsome <jnewsome@torproject.org>2024-10-24 10:09:19 -0500
commit09e91e2f5691c5770ff88a58557cc5eca054ab93 (patch)
tree3153902a68fed17ffee5e4de76d2ddc3ceaea779
parente6bfc2a4eab575364ce182f0da1828500654c299 (diff)
downloadtor-09e91e2f5691c5770ff88a58557cc5eca054ab93.tar.gz
tor-09e91e2f5691c5770ff88a58557cc5eca054ab93.zip
Use pip to install chutney's python dependencies
-rw-r--r--.gitlab-ci.yml4
1 files changed, 4 insertions, 0 deletions
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