diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-05-14 10:20:08 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-05-14 10:20:08 -0400 |
commit | e26b3778ded828ae8499219f0862af1eb70c862a (patch) | |
tree | ab13edd60661c11a1ef16fe168bdbfeea4885c2d | |
parent | 792dbff8fb770ac69068fda525dc1538c31d69f1 (diff) | |
parent | 72312cdbb166e2c0c9d4b6dba049f43c2d35ecdc (diff) | |
download | tor-e26b3778ded828ae8499219f0862af1eb70c862a.tar.gz tor-e26b3778ded828ae8499219f0862af1eb70c862a.zip |
Merge branch 'maint-0.4.1' into release-0.4.1
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 987e56cc7d..36e9bef4b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -193,7 +193,10 @@ install: ## 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 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 + ## XXXX We are temporarily fixing the version at d1174a83 to work around + ## https://github.com/torproject/stem/issues/63 . + ## - if [[ "$TEST_STEM" != "" ]]; then git clone --no-tags --depth 1 https://github.com/torproject/stem.git; export STEM_SOURCE_DIR=`pwd`/stem; fi + - if [[ "$TEST_STEM" != "" ]]; then git clone https://github.com/torproject/stem.git && ( cd ./stem && git checkout d1174a83c2dcb7b855d8fc986be3ab8f8d88d68c) ; export STEM_SOURCE_DIR=`pwd`/stem; fi ## ## Finally, list installed package versions - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then dpkg-query --show; fi |