From f37e5e8d2605e68c3f36c224d9109acc993ab2fc Mon Sep 17 00:00:00 2001 From: Anton Lindqvist Date: Sat, 17 Jun 2017 11:26:55 +0200 Subject: [PATCH] Run mandoc on Travis --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 6fa9fab2..7953b9f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,8 +24,11 @@ matrix: # GCC is linked to Clang on macOS - os: osx compiler: gcc +install: + - if [ $TRAVIS_OS_NAME = osx ]; then brew install mandoc; fi script: - ./autogen.sh - ./configure || (cat config.log; exit 1) - make || exit 1 - make distcheck || (find . -name test-suite.log | xargs -t cat; exit 1) + - if [ $TRAVIS_OS_NAME = osx ]; then mandoc -Tlint pick.1; fi