From: Richard Russon Date: Mon, 18 Apr 2016 00:07:54 +0000 (+0100) Subject: travis: add config X-Git-Tag: neomutt-20160530~10^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd8f093715a8483fc2226db43fc6d86702c21388;p=neomutt travis: add config [ci skip] --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..bf20209c5 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,32 @@ +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="" + # Enable components that default to 'off' + - OPTS="--enable-compressed" + +before_script: + - ccache -z + - autoreconf -i + +script: + - ./configure $OPTS + - make + - ./mutt -v + +after_script: + - ccache -s +