aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: 354be896d3b40714c6c557b93f0e41361ddfdcd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
sudo: false
language: java
jdk:
  - openjdk6
  - openjdk7
  - oraclejdk7
os:
  - linux
  - osx
script:
  - ./autogen.sh && ./configure && make -j2
  - cd java && mvn test && cd ..
  - cd javanano && mvn test && cd ..
  - cd python && python setup.py build && python setup.py test && cd ..
  - export LD_LIBRARY_PATH=../src/.libs
  - cd python && python setup.py build --cpp_implementation && python setup.py test --cpp_implementation && cd ..
  - cd conformance && make test_java && cd ..
  - make distcheck -j2
notifications:
  email: false