From: Richard Russon Date: Mon, 18 Apr 2016 00:07:54 +0000 (+0100) Subject: travis: add config X-Git-Tag: neomutt-20160530~22^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e8c0e581752ebe94a5d27429d0c07539a36a001;p=neomutt travis: add config [ci skip] --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..e61a1e8b0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,30 @@ +notifications: + email: + recipients: + - rich@flatcap.org + on_success: change + on_failure: always + +sudo: required +dist: trusty + +language: c +compiler: gcc +cache: ccache + +env: + # Default config + - OPTS="" + +before_script: + - ccache -z + - autoreconf -i + +script: + - ./configure $OPTS + - make + - ./mutt -v + +after_script: + - ccache -s +