diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 28cf3aa7bd..284f7d858c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -103,7 +103,7 @@ variables: - 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. +# Minimal check on debian: just make, make check. # debian-minimal: image: debian:buster @@ -185,6 +185,7 @@ debian-tracing: variables: TRACING: "yes" CHECK: "no" + DISTCHECK: "yes" script: - ./scripts/ci/ci-driver.sh # Ensure that we only run tracing when it's implemented. @@ -241,3 +242,22 @@ debian-nss: NSS: "yes" script: - ./scripts/ci/ci-driver.sh + +##### +# Debian packaging triggers for maintenance branches +debian-packaging-0.4.5: + stage: deploy + trigger: + project: tpo/core/debian/tor + branch: debian-0.4.5 + rules: + - if: $CI_PROJECT_NAMESPACE == "tpo/core" && + $CI_COMMIT_BRANCH == "maint-0.4.5" +debian-packaging-0.4.6: + stage: deploy + trigger: + project: tpo/core/debian/tor + branch: debian-0.4.6 + rules: + - if: $CI_PROJECT_NAMESPACE == "tpo/core" && + $CI_COMMIT_BRANCH == "maint-0.4.6" |