tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit a50fb35b6ccc05647f16dbdd28c51a6e51bb1b70
parent 141c8df513956b5928ba625dfdb984218b32093a
Author: Alexander Hansen Færøy <ahf@torproject.org>
Date:   Tue, 18 Mar 2025 14:29:11 +0100

CI: Install python3-venv.

Diffstat:
M.gitlab-ci.yml | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 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