]> 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>
Mon, 18 Apr 2016 13:56:03 +0000 (14:56 +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..e61a1e8
--- /dev/null
@@ -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
+