[master] e5555da Run make distcheck on PRs

Federico G. Schwindt fgsch at lodoss.net
Mon Apr 2 15:47:08 UTC 2018


commit e5555da4b39574d8568429b372ecc128541c2cee
Author: Federico G. Schwindt <fgsch at lodoss.net>
Date:   Mon Apr 2 16:39:24 2018 +0100

    Run make distcheck on PRs
    
    Also give irc notifications a try.
    
    Discussed with phk and geoff.

diff --git a/.travis.yml b/.travis.yml
index f3d5a2b..9eb8e4a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -23,6 +23,13 @@ addons:
   apt:
     packages:
       - python-docutils
+notifications:
+  irc:
+    channels:
+      - "irc.linpro.no#varnish-hacking"
+    on_success: change
+    use_notice: true
+    skip_join: true
 before_install:
   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
       brew update;
@@ -50,4 +57,5 @@ before_install:
 script:
   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
       export PYTHONPATH=`brew --prefix`/lib/python2.7/site-packages; fi
-  - make -j3 check VERBOSE=1
+  - if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then make -j3 distcheck; fi
+  - if [[ "$TRAVIS_PULL_REQUEST" == "false" ]]; then make -j3 check VERBOSE=1; fi


More information about the varnish-commit mailing list