Commit e5555da4 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Run make distcheck on PRs

Also give irc notifications a try.

Discussed with phk and geoff.
parent dfcb080d
...@@ -23,6 +23,13 @@ addons: ...@@ -23,6 +23,13 @@ addons:
apt: apt:
packages: packages:
- python-docutils - python-docutils
notifications:
irc:
channels:
- "irc.linpro.no#varnish-hacking"
on_success: change
use_notice: true
skip_join: true
before_install: before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update; brew update;
...@@ -50,4 +57,5 @@ before_install: ...@@ -50,4 +57,5 @@ before_install:
script: script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
export PYTHONPATH=`brew --prefix`/lib/python2.7/site-packages; fi 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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment