]> 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..2b39834
--- /dev/null
@@ -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
+