Files
mosh/.travis.yml
T
2016-10-01 00:48:43 -04:00

39 lines
746 B
YAML

osx_image: xcode8
os:
- linux
- osx
cache:
- apt
language: cpp
sudo: required
dist: trusty
addons:
apt:
packages:
- protobuf-compiler
- libprotobuf-dev
- libutempter-dev
- tmux # test suite
- perl # test suite
before_install:
- if test "$TRAVIS_OS_NAME" = osx; then brew update; fi
- if test "$TRAVIS_OS_NAME" = osx; then brew install protobuf tmux; fi
- if test "$TRAVIS_OS_NAME" = osx; then brew outdated protobuf tmux || brew upgrade protobuf tmux; fi
- git fetch --tags --unshallow
script:
- ./autogen.sh
- ./configure --enable-compile-warnings=error --enable-examples
- make distcheck VERBOSE=1
notifications:
irc:
channels:
- "chat.freenode.net#mosh"
skip_join: true