diff options
author | teor <teor@torproject.org> | 2018-08-09 22:16:28 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2018-08-09 22:19:03 +1000 |
commit | fa9a0cc1fe81bef8584f446829b6fcef258cc762 (patch) | |
tree | 972acefbb505308f085d7461fb362ec328d61767 /.travis.yml | |
parent | 23b242104ba5cefb5fd16effda33a611e521050d (diff) | |
download | tor-fa9a0cc1fe81bef8584f446829b6fcef258cc762.tar.gz tor-fa9a0cc1fe81bef8584f446829b6fcef258cc762.zip |
Travis: list installed package versions before building
Part of 24629.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index d822780cd3..9671411b48 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 |