travis: add osx platform test

This commit is contained in:
Elan Ruusame 2016-04-26 16:24:43 +00:00
parent 0dde0adb50
commit 8e9094a92c

View File

@ -1,11 +1,19 @@
# $File$ # $File$
language: c language: c
os:
- linux
- osx
compiler: compiler:
- gcc - gcc
- clang - clang
before_install: before_install:
- sudo apt-get update -qq - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq; fi
- sudo apt-get install -qq automake libtool make python zlib1g-dev - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install -qq automake libtool make python zlib1g-dev; fi
script: script:
- autoreconf -f -i - autoreconf -f -i
- ./configure --disable-silent-rules - ./configure --disable-silent-rules