aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Newsome <jnewsome@torproject.org>2024-10-24 09:44:47 -0500
committerJim Newsome <jnewsome@torproject.org>2024-10-24 09:44:47 -0500
commite6bfc2a4eab575364ce182f0da1828500654c299 (patch)
treefdb2148f2815192337c9d947f922a725ea19dca0
parent7cca6dc1a36ff201eaab62a11699259e3ef9ce22 (diff)
downloadtor-e6bfc2a4eab575364ce182f0da1828500654c299.tar.gz
tor-e6bfc2a4eab575364ce182f0da1828500654c299.zip
Re-format CHUTNEY installation block into multiple lines
We're about to add a few more steps, which would make the single-line format a bit unwieldy.
-rw-r--r--.gitlab-ci.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3f4a9b7af5..7af5aa873d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -106,7 +106,11 @@ variables:
# TODO: This next line should not be debian-only.
- if [ "$STEM" = yes ]; then git clone --depth 1 https://gitlab.torproject.org/tpo/network-health/stem.git ; export STEM_PATH="$(pwd)/stem"; fi
# TODO: This next line should not be debian-only.
- - if [ "$CHUTNEY" = yes ]; then git clone --depth 1 https://gitlab.torproject.org/tpo/core/chutney.git ; export CHUTNEY_PATH="$(pwd)/chutney"; fi
+ - |
+ if [ "$CHUTNEY" = yes ]; then
+ git clone --depth 1 https://gitlab.torproject.org/tpo/core/chutney.git
+ export CHUTNEY_PATH="$(pwd)/chutney"
+ fi
- if [ "$TRACING" = yes ]; then apt install liblttng-ust-dev; fi
# Minimal check on debian: just make, make check.
@@ -270,4 +274,4 @@ rust-latest:
- rustup show
- cargo clippy --all-features --all-targets -- -D warnings
after_script:
- - cargo clean \ No newline at end of file
+ - cargo clean