toxcore/.travis.yml
iphydf 459f8f2013
Check code formatting on Travis.
We run astyle on Travis and check if there is a diff. The build terminates if
git finds a difference.
2016-08-12 01:00:00 +01:00

51 lines
1.0 KiB
YAML

language: c
compiler:
- clang
- gcc
env:
matrix:
# - BUILD=hstox
- BUILD=toxcore
addons:
apt:
sources:
- avsm
- hvr-ghc
packages:
- cabal-install-1.22
- check
- ghc-7.10.3
- libvpx-dev
- opam # For apidsl and Frama-C.
- texinfo # For libconfig.
cache:
directories:
- $HOME/.cabal
- $HOME/.ghc
- $HOME/cache
install:
# Set up PATH for the /opt packages.
- export PATH=/opt/cabal/1.22/bin:$PATH
- export PATH=/opt/ghc/7.10.3/bin:$PATH
# Globally used environment variables.
- export CACHE_DIR=$HOME/cache
- export OPAMROOT=$CACHE_DIR/.opam
- export LD_LIBRARY_PATH=$CACHE_DIR/lib
- export PKG_CONFIG_PATH=$CACHE_DIR/lib/pkgconfig
- export ASTYLE=$CACHE_DIR/astyle/build/gcc/bin/astyle
# Install required packages.
- other/travis/${BUILD}-install
script:
- other/travis/${BUILD}-script
after_script:
- other/travis/${BUILD}-after_script
notifications:
irc: "chat.freenode.net#toktok-status"