file/.travis.yml
Christos Zoulas 43884d3b4c Sync with CVS:
- remove files from git that have been removed in CVS
- sync CVSID's
2021-08-26 06:05:51 -04:00

29 lines
528 B
YAML

# $File: .travis.yml,v 1.8 2016/06/28 06:34:34 kim Exp $
language: c
os:
- linux
- osx
compiler:
- gcc
- clang
before_install:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install -qq automake libtool make python zlib1g-dev; fi
script:
- autoreconf -f -i
- ./configure --disable-silent-rules
- make -j4
- make -C tests check
notifications:
email:
recipients:
- file-tests@mx.gw.com
on_success: change
on_failure: always