hammer/.travis.yml

37 lines
742 B
YAML
Raw Normal View History

2013-07-11 22:39:06 +02:00
language: c
compiler:
- gcc
- clang
2013-11-26 15:45:34 -08:00
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: python
python: 2.6
env: BINDINGS=python
- compiler: clang
language: python
python: 2.6
env: BINDINGS=python
2013-11-17 20:31:10 -06:00
before_install:
- sudo apt-get update -qq
2013-11-26 15:45:34 -08:00
- if [ "$BINDINGS" == "python" ]; then sudo apt-get install -qq swig python-dev; fi
2013-09-13 01:14:40 -07:00
script:
2013-11-26 15:45:34 -08:00
- scons bindings=$BINDINGS test
2013-07-11 22:52:59 +02:00
notifications:
2013-11-20 15:37:24 -06:00
irc:
channels:
- "irc.upstandinghackers.com#hammer"
use_notice: true
skip_join: true