aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2018-12-14 12:49:32 +0100
committerAnders Broman <a.broman58@gmail.com>2018-12-14 14:11:25 +0000
commit3ee5747481899093f7bbbb1b69115aa05a069f19 (patch)
tree5ba74283afbcb86091b7f154180e4830e4d9a99c /appveyor.yml
parenta33d4ccb06c88c412af6b3316a0e43b3435d0689 (diff)
travis,appveyor: display tshark --version output
This reveals the actual build configuration. Change-Id: Ie49cea4a07faaa1b942ff6a973b03893f36ca16f Reviewed-on: https://code.wireshark.org/review/31043 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
index c4220b134c..501e15aa90 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -58,6 +58,11 @@ test_script:
- set WS_BIN_PATH=%CD%\run\%CONFIGURATION%
- pytest -nauto -ra ..\test
+on_finish:
+ - ps: |
+ $Tshark = "run\\$Env:CONFIGURATION\\tshark.exe"
+ if (Test-Path $Tshark) { & $Tshark --version }
+
# AppVeyor prevents to store artifacts exceeding 50 GB. Commenting out
# their upload for now. They can be re-enabled on your own repo from the
# configuration page: