]> granicus.if.org Git - neomutt/commitdiff
travis: add config
authorRichard Russon <rich@flatcap.org>
Mon, 18 Apr 2016 00:07:54 +0000 (01:07 +0100)
committerRichard Russon <rich@flatcap.org>
Tue, 17 May 2016 16:36:09 +0000 (17:36 +0100)
[ci skip]

.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..bf20209
--- /dev/null
@@ -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
+