9681ef4273
Change-Id: I8ef8664f7facf86028be3f4f0d5d2efc8a685d6d
21 lines
542 B
YAML
21 lines
542 B
YAML
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
|