toxcore/.travis.yml

49 lines
982 B
YAML
Raw Normal View History

2013-06-25 08:56:38 +08:00
language: c
matrix:
include:
- env: BUILD=hstox
language: haskell
ghc: 7.8
- env: BUILD=toxcore
compiler: clang
- env: BUILD=toxcore
compiler: gcc
- env: BUILD=autotools
compiler: clang
2013-06-25 08:56:38 +08:00
addons:
apt:
sources:
- avsm
packages:
- check
- libvpx-dev
- opam # For apidsl and Frama-C.
- texinfo # For libconfig.
cache:
directories:
- $HOME/.cabal
- $HOME/.ghc
- $HOME/cache
install:
# 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
2013-06-25 08:56:38 +08:00
script:
- other/travis/${BUILD}-script
2013-06-25 08:56:38 +08:00
after_script:
- other/travis/${BUILD}-after_script
2013-07-13 06:31:57 +08:00
notifications:
irc: "chat.freenode.net#toktok-status"