You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
11 years ago
|
language: python
|
||
|
|
||
|
# We support from Python 2.4 to 2.7. However, 2.4 is not supported by travis,
|
||
|
# so it is not listed here
|
||
|
python:
|
||
|
- "2.5"
|
||
|
- "2.6"
|
||
|
- "2.7"
|
||
|
- "3.2"
|
||
|
- "3.3"
|
||
|
|
||
|
# For testing with JYTHON=true, we will use Jython 2.2 instead of the python
|
||
|
# version provided by Travis CI
|
||
|
env:
|
||
|
- JYTHON=true
|
||
|
- JYTHON=false
|
||
|
|
||
|
matrix:
|
||
|
exclude:
|
||
|
- python: "2.5"
|
||
|
env: JYTHON=true
|
||
|
- python: "2.6"
|
||
|
env: JYTHON=true
|
||
|
- python: "3.2"
|
||
|
env: JYTHON=true
|
||
|
- python: "3.3"
|
||
|
env: JYTHON=true
|
||
|
|
||
|
# we need cmake, and jython if JYTHON=true
|
||
|
install:
|
||
|
- sudo apt-get install cmake ant
|
||
|
- export JYTHON_URL='http://downloads.sourceforge.net/project/jython/jython/2.2.1/jython_installer-2.2.1.jar?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fjython%2Ffiles%2Fjython%2F2.2.1%2F&ts=1338180153&use_mirror=iweb'
|
||
|
- if [ "$JYTHON" == "true" ]; then wget $JYTHON_URL -O jython_installer.jar; java -jar jython_installer.jar -s -d $HOME/jython; export PATH=$HOME/jython:$PATH;jython --version; fi
|
||
|
|
||
|
# Before run the test case, we need to make jython run some code
|
||
|
before_script:
|
||
|
- if [ "$JYTHON" == "true" ]; then jython -c "print ''"; fi
|
||
|
|
||
|
# test script
|
||
|
script:
|
||
|
- if [ "$JYTHON" == "true" ]; then cmake -DPYTHON_EXECUTABLE="$(which jython)" . ; else cmake . ; fi
|
||
|
- ctest -V --output-on-failure .
|
||
|
- cd java-binding
|
||
|
- ant -v
|
||
|
- ant -v doc
|
||
|
|
||
|
# Notify the mailing list
|
||
|
notifications:
|
||
|
email:
|
||
|
on_success: change
|
||
|
on_failure: always
|