]> granicus.if.org Git - neomutt/commitdiff
travis: add config
authorRichard Russon <rich@flatcap.org>
Wed, 13 Jul 2016 14:41:27 +0000 (15:41 +0100)
committerRichard Russon <rich@flatcap.org>
Thu, 18 Aug 2016 14:38:58 +0000 (15:38 +0100)
.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..1bf1b30
--- /dev/null
@@ -0,0 +1,42 @@
+notifications:
+  email:
+    recipients:
+      - rich@flatcap.org
+    on_success: change
+    on_failure: always
+
+sudo: required
+dist: trusty
+
+language: c
+compiler: gcc
+cache: ccache
+
+addons:
+  apt:
+    packages:
+      - libgpgme11-dev
+      - libnotmuch-dev
+      - libtokyocabinet-dev
+      - libgdbm-dev
+      - libdb-dev
+      # - libqdbm-dev
+      # - libslang2-dev
+      # libcaca includes slang for us
+      - libcaca-dev
+
+git:
+  depth: 3
+
+install:
+  - git clone --depth 1 https://github.com/neomutt/travis-build.git ~/config
+
+before_script:
+  - ccache --zero-stats
+
+script:
+  - ~/config/build
+
+after_script:
+  - ccache --show-stats
+