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 | b8bff426f311a5b6cf345e985936b3efd693bfce (patch) | |
tree | 563da96280e3dae75b9cd98982eaa44a682553a5 /.travis.yml | |
parent | b16c1e4cf61b9e383b1466eb1c034561be166939 (diff) | |
parent | 72312cdbb166e2c0c9d4b6dba049f43c2d35ecdc (diff) | |
download | tor-b8bff426f311a5b6cf345e985936b3efd693bfce.tar.gz tor-b8bff426f311a5b6cf345e985936b3efd693bfce.zip |
Merge branch 'maint-0.4.1' into maint-0.4.2
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 3a160840a7..ae7b93ed91 100644 --- a/.travis.yml +++ b/.travis.yml @@ -195,7 +195,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 |