From: Richard Russon Date: Mon, 18 Apr 2016 00:07:54 +0000 (+0100) Subject: travis: add config X-Git-Tag: neomutt-20160530~15^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01616d1890d3ffc5a5a13e42c09bcf964f7e2924;p=neomutt travis: add config [ci skip] --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..2b398348d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,26 @@ +notifications: + email: + recipients: + - rich@flatcap.org + on_success: change + on_failure: always + +sudo: required +dist: trusty + +language: c +compiler: gcc +cache: ccache + +before_script: + - ccache -z + - autoreconf -i + +script: + # Clumsy way to forcibly disable FMEMOPEN + - ./configure && grep -v FMEMOPEN config.h > config.h.tmp && mv config.h.tmp config.h && make && ./mutt -v + - ./configure && make && ./mutt -v + +after_script: + - ccache -s +