hammer/.travis.yml
2013-12-05 10:18:28 +01:00

37 lines
746 B
YAML

language: c
compiler:
- gcc
- clang
env:
- BINDINGS=none
matrix:
include:
- compiler: gcc
language: python
python: 2.7
env: BINDINGS=python
- compiler: clang
language: python
python: 2.7
env: BINDINGS=python
- compiler: gcc
language: perl
perl: 5.14
env: BINDINGS=perl
- compiler: clang
language: perl
perl: 5.14
env: BINDINGS=perl
before_install:
- sudo apt-get update -qq
- if [ "$BINDINGS" == "python" ]; then sudo apt-get install -qq swig python-dev; fi
install: true
script:
- scons bindings=$BINDINGS test
notifications:
irc:
channels:
- "irc.upstandinghackers.com#hammer"
use_notice: true
skip_join: true