hammer/.travis.yml
Meredith L. Patterson 7d054b1f92 perl needs swig too
2013-12-05 10:21:10 +01:00

38 lines
819 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
- if [ "$BINDINGS" == "perl" ]; then sudo apt-get install -qq swig; fi
install: true
script:
- scons bindings=$BINDINGS test
notifications:
irc:
channels:
- "irc.upstandinghackers.com#hammer"
use_notice: true
skip_join: true