]> granicus.if.org Git - neomutt/commitdiff
travis: test messages
authorRichard Russon <rich@flatcap.org>
Fri, 18 Nov 2016 02:20:34 +0000 (02:20 +0000)
committerRichard Russon <rich@flatcap.org>
Thu, 24 Nov 2016 22:16:05 +0000 (22:16 +0000)
.travis.yml

index b0b7225c3979b258be50bf7c1109ad9bb924d123..f543863baedb7088f38ab388ef6f35bdbf15f8b0 100644 (file)
@@ -1,52 +1,17 @@
 notifications:
-  email:
-    recipients:
-      - rich@flatcap.org
-    on_success: change
-    on_failure: always
+  email: false
 
 sudo: required
 dist: trusty
 
 language: c
 compiler: gcc
-cache: ccache
 
 addons:
   apt:
     packages:
-      - libgpgme11-dev
-      - libnotmuch-dev
-      - libtokyocabinet-dev
-      - libkyotocabinet-dev
-      - libgdbm-dev
-      - libdb-dev
-      - liblmdb-dev
-      - libqdbm-dev
-      - libslang2-dev
-      - libgnutls-dev
-      - libssl-dev
-      - libsasl2-dev
-      - libgss-dev
-      - xsltproc
-      - lynx
-      - docbook-simple
-      - docbook-xsl
-      - libxml2-utils
       - gettext
 
-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
+  - cd po && for i in *.po; do echo -ne "${i%.po}:\t"; msgfmt --statistics -c -o ${i%.po}.gmo $i; done