commit fa9a0cc1fe81bef8584f446829b6fcef258cc762 Author: teor teor@torproject.org Date: Thu Aug 9 22:16:28 2018 +1000
Travis: list installed package versions before building
Part of 24629. --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/.travis.yml b/.travis.yml index d822780cd..9671411b4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -124,6 +124,10 @@ install: - if [[ "$COVERAGE_OPTIONS" != "" ]]; then pip install --user cpp-coveralls; fi ## If we're on OSX, and using asciidoc, install asciidoc - if [[ "$ASCIIDOC_OPTIONS" == "" ]] && [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install asciidoc; fi + ## + ## Finally, list installed package versions + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then dpkg-query --show; fi + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew list --versions; fi
script: - ./autogen.sh
tor-commits@lists.torproject.org