summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2019-03-21 16:26:51 +0100
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2019-03-21 16:41:44 +0100
commitdc8f136afff3359a76de28e1180c3ac5e14f6a51 (patch)
tree88ee9ccef8b86e7cb20919f07192aa4b7a98fecd /.travis.yml
parente96aba9a901aa34e87a616003873fe7ee81fe3b6 (diff)
downloadtcpdump-dc8f136afff3359a76de28e1180c3ac5e14f6a51.tar.gz
Travis CI: Add debug infos
Add a folded 'cat Makefile' (without the mkdep part for autotools). Add a folded 'cat config.h'. Add a folded 'cat config.log' (for autotools). The 'sleep 10' command is a workaround for a display problem on osx.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 763d8b0d..4afb8104 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -107,3 +107,14 @@ script:
- ./tcpdump --version
- ./tcpdump -h
- if [ "$CMAKE" = no ]; then make releasetar; fi
+ - echo '$ cat Makefile [...]'; echo travis_fold:start:script.cat_makefile
+ - if [ "$CMAKE" = no ]; then cat Makefile | sed -n '1,/DO NOT DELETE THIS LINE -- mkdep uses it/p'; fi
+ - if [ "$CMAKE" = yes ]; then cat Makefile; fi
+ - echo -n travis_fold:end:script.cat_makefile
+ - echo '$ cat config.h'; echo travis_fold:start:script.cat_config_h
+ - cat config.h
+ - echo -n travis_fold:end:script.cat_config_h
+ - if [ "$CMAKE" = no ]; then echo '$ cat config.log'; echo travis_fold:start:script.cat_config_log; fi
+ - if [ "$CMAKE" = no ]; then cat config.log; fi
+ - if [ "$CMAKE" = no ]; then echo -n travis_fold:end:script.cat_config_log; fi
+ - if [ "$TRAVIS_OS_NAME" = osx ]; then sleep 10; fi