]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Try running test-stem on travis
authorrl1987 <rl1987@sdf.lonestar.org>
Sun, 7 Oct 2018 15:41:05 +0000 (18:41 +0300)
committerNick Mathewson <nickm@torproject.org>
Mon, 29 Oct 2018 19:18:07 +0000 (15:18 -0400)
.travis.yml

index ec1748e67bf508b84c33d92f14ead6c03fa3bc3b..c62702f9a882c34dfc4119707000c44be1433b04 100644 (file)
@@ -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: