]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Travis: Fold the 'configure' and 'make install' outputs
authorFrancois-Xavier Le Bail <[email protected]>
Wed, 7 Sep 2016 20:21:03 +0000 (22:21 +0200)
committerFrancois-Xavier Le Bail <[email protected]>
Wed, 7 Sep 2016 21:32:05 +0000 (23:32 +0200)
This change allows to see better the possible warnings.

.travis.yml

index b7e32576b64deab7c51e20cfd3738b4a368b298b..3ff7e3370289b27710300c24f9fea28f7144ac1f 100644 (file)
@@ -66,9 +66,13 @@ before_script:
 
 script:
   - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then touch .devel configure; fi
+  - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then echo '$ ./configure [...]' && echo -n travis_fold:start:script.configure; fi
   - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then ./configure --prefix=/tmp; fi
+  - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then echo -n travis_fold:end:script.configure; fi
   - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then make -s; fi
+  - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then echo '$ make install [...]' && echo -n travis_fold:start:script.make_install; fi
   - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then PATH=$PATH make install; fi
+  - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then echo -n travis_fold:end:script.make_install; fi
   - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then make check; fi
   - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then ./tcpdump -D; fi
   - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then ./tcpdump -J; fi