diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2018-10-07 18:41:05 +0300 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-10-29 15:18:07 -0400 |
commit | 4184aa0ff722c2d2a39c1f080e42fec17fc77820 (patch) | |
tree | 0f1ec3163c8d5f28dc1d367127b03d675bdd5811 /.travis.yml | |
parent | c78904b6302c53e0778854974c13aa4d5a499bb0 (diff) | |
download | tor-4184aa0ff722c2d2a39c1f080e42fec17fc77820.tar.gz tor-4184aa0ff722c2d2a39c1f080e42fec17fc77820.zip |
Try running test-stem on travis
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index ec1748e67b..c62702f9a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,6 +51,8 @@ matrix: # - env: HARDENING_OPTIONS="" ## We check asciidoc with distcheck, to make sure we remove doc products - env: DISTCHECK="yes" ASCIIDOC_OPTIONS="" + # We clone our stem repo and run `make test-stem` + - env: TEST_STEM="yes" ## Check rust online with distcheck, to make sure we remove rust products ## But without hardening (see above) - env: DISTCHECK="yes" RUST_OPTIONS="--enable-rust --enable-cargo-online-mode" HARDENING_OPTIONS="" @@ -203,6 +205,7 @@ script: - ./configure $CONFIGURE_FLAGS ## We run `make check` because that's what https://jenkins.torproject.org does. - if [[ "$DISTCHECK" == "" ]]; then make check; fi + - if [[ "$TEST_STEM" != "" ]]; then git clone --depth 1 https://github.com/torproject/stem.git ; export STEM_SOURCE_DIR=`pwd`/stem; make test-stem; fi - if [[ "$DISTCHECK" != "" ]]; then make distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS"; fi after_failure: |