diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-09-21 09:26:57 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-09-21 12:58:49 -0400 |
commit | 7280bb50b2e0c7af91381fa9634e2aea3ad5561c (patch) | |
tree | 9154c5b987d8b9164cb8b6f36d5e909a1abef640 | |
parent | 3ee0f6371d77db712dd131ac8a4e98672a63c81c (diff) | |
download | tor-7280bb50b2e0c7af91381fa9634e2aea3ad5561c.tar.gz tor-7280bb50b2e0c7af91381fa9634e2aea3ad5561c.zip |
gitlab-ci: add an NSS check.
-rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7fd07b9ed9..43154d12f5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -89,6 +89,7 @@ variables: - if [ "$DOXYGEN" = yes ]; then apt-get install doxygen; fi - if [ "$STEM" = yes ]; then apt-get install timelimit; fi - if [ "$CC" = clang ]; then apt-get install clang; fi + - if [ "$NSS" = yes ]; then apt-get install libnss3 libnss3-dev; fi # TODO: This next line should not be debian-only. - 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. @@ -214,3 +215,13 @@ debian-disable-relay: - if: '$CI_PIPELINE_SOURCE == "push"' exists: - src/feature/relay/relay_stub.c + +##### +# NSS check on debian +debian-nss: + image: debian:stable + <<: *debian-template + variables: + NSS: "yes" + script: + - ./scripts/ci/ci-driver.sh |