mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-30 15:43:32 +01:00
Travis: SKIP_MAKE_CHECK="yes" when running stem
And add some comments about stem Part of 29280.
This commit is contained in:
parent
84f2c0affb
commit
6bc8dedbed
@ -53,7 +53,7 @@ matrix:
|
|||||||
- env: CHUTNEY="yes" SKIP_MAKE_CHECK="yes" CHUTNEY_ALLOW_FAILURES="2"
|
- env: CHUTNEY="yes" SKIP_MAKE_CHECK="yes" CHUTNEY_ALLOW_FAILURES="2"
|
||||||
compiler: clang
|
compiler: clang
|
||||||
# We clone our stem repo and run `make test-stem`
|
# We clone our stem repo and run `make test-stem`
|
||||||
- env: TEST_STEM="yes"
|
- env: TEST_STEM="yes" SKIP_MAKE_CHECK="yes"
|
||||||
## Check rust online with distcheck, to make sure we remove rust products
|
## Check rust online with distcheck, to make sure we remove rust products
|
||||||
- env: DISTCHECK="yes" RUST_OPTIONS="--enable-rust --enable-cargo-online-mode"
|
- env: DISTCHECK="yes" RUST_OPTIONS="--enable-rust --enable-cargo-online-mode"
|
||||||
## Check disable module dirauth with and without rust
|
## Check disable module dirauth with and without rust
|
||||||
@ -75,7 +75,7 @@ matrix:
|
|||||||
## https://docs.travis-ci.com/user/customizing-the-build#matching-jobs-with-allow_failures
|
## https://docs.travis-ci.com/user/customizing-the-build#matching-jobs-with-allow_failures
|
||||||
allow_failures:
|
allow_failures:
|
||||||
## test-stem sometimes hangs on Travis
|
## test-stem sometimes hangs on Travis
|
||||||
- env: TEST_STEM="yes"
|
- env: TEST_STEM="yes" SKIP_MAKE_CHECK="yes"
|
||||||
|
|
||||||
exclude:
|
exclude:
|
||||||
## gcc on OSX is less useful, because the default compiler is clang.
|
## gcc on OSX is less useful, because the default compiler is clang.
|
||||||
@ -178,6 +178,7 @@ install:
|
|||||||
- if [[ "$TOR_RUST_DEPENDENCIES" == "true" ]]; then export TOR_RUST_DEPENDENCIES=$PWD/src/ext/rust/crates; fi
|
- if [[ "$TOR_RUST_DEPENDENCIES" == "true" ]]; then export TOR_RUST_DEPENDENCIES=$PWD/src/ext/rust/crates; fi
|
||||||
## If we're running chutney, install it.
|
## If we're running chutney, install it.
|
||||||
- if [[ "$CHUTNEY" != "" ]]; then git clone --depth 1 https://github.com/torproject/chutney.git ; export CHUTNEY_PATH="$(pwd)/chutney"; fi
|
- if [[ "$CHUTNEY" != "" ]]; then git clone --depth 1 https://github.com/torproject/chutney.git ; export CHUTNEY_PATH="$(pwd)/chutney"; fi
|
||||||
|
## If we're running stem, install it.
|
||||||
- if [[ "$TEST_STEM" != "" ]]; then git clone --depth 1 https://github.com/torproject/stem.git ; export STEM_SOURCE_DIR=`pwd`/stem; fi
|
- if [[ "$TEST_STEM" != "" ]]; then git clone --depth 1 https://github.com/torproject/stem.git ; export STEM_SOURCE_DIR=`pwd`/stem; fi
|
||||||
##
|
##
|
||||||
## Finally, list installed package versions
|
## Finally, list installed package versions
|
||||||
@ -194,6 +195,7 @@ install:
|
|||||||
- python --version
|
- python --version
|
||||||
## If we're running chutney, show the chutney commit
|
## If we're running chutney, show the chutney commit
|
||||||
- if [[ "$CHUTNEY" != "" ]]; then pushd "$CHUTNEY_PATH"; git log -1 ; popd ; fi
|
- if [[ "$CHUTNEY" != "" ]]; then pushd "$CHUTNEY_PATH"; git log -1 ; popd ; fi
|
||||||
|
## If we're running stem, show the stem version and commit
|
||||||
- if [[ "$TEST_STEM" != "" ]]; then pushd stem; python -c "from stem import stem; print(stem.__version__);"; git log -1; popd; fi
|
- if [[ "$TEST_STEM" != "" ]]; then pushd stem; python -c "from stem import stem; print(stem.__version__);"; git log -1; popd; fi
|
||||||
|
|
||||||
script:
|
script:
|
||||||
|
Loading…
Reference in New Issue
Block a user