tmux/.travis.yml

19 lines
482 B
YAML
Raw Normal View History

2019-05-29 13:19:26 +00:00
os:
- linux
- osx
language: c
2019-05-29 13:19:26 +00:00
matrix:
include:
- compiler: gcc
- compiler: clang
2019-05-29 13:19:26 +00:00
before_install:
2019-05-29 13:19:26 +00:00
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get -y install bison autotools-dev libncurses5-dev libevent-dev pkg-config libutempter-dev build-essential; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update; fi
script:
- ./autogen.sh && ./configure && make