aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2020-08-25 10:04:25 -0400
committerDavid Goulet <dgoulet@torproject.org>2020-08-25 10:38:48 -0400
commit20a990cea3be353357723fa03b824dc9cfc6dd8c (patch)
treedbc3edd287278c37aebab34a63eb45be7bebad8d /.gitlab-ci.yml
parentcc4e42ee3257d5157172cedb73ed86ba88ca271d (diff)
downloadtor-20a990cea3be353357723fa03b824dc9cfc6dd8c.tar.gz
tor-20a990cea3be353357723fa03b824dc9cfc6dd8c.zip
ci: Add tracing build to Gitlab CI
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 176c71f8f0..48bcf6b000 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -92,6 +92,7 @@ variables:
- if [ "$STEM" = yes ]; then git clone --depth 1 https://git.torproject.org/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://git.torproject.org/chutney.git ; export CHUTNEY_PATH="$(pwd)/chutney"; fi
+ - if [ "$TRACING" = yes ]; then apt install liblttng-ust-dev; fi
# Minmal check on debian: just make, make check.
#
@@ -155,3 +156,14 @@ debian-integration:
STEM: "yes"
script:
- ./scripts/ci/ci-driver.sh
+
+#####
+# Tracing build on Debian stable.
+debian-tracing:
+ image: debian:stable
+ <<: *debian-template
+ variables:
+ TRACING: "yes"
+ CHECK: "no"
+ script:
+ - ./scripts/ci/ci-driver.sh