Fix bad substitution error, add jip dependency and make scripts more robust.

master
baztian 2014-02-11 17:45:21 +01:00
parent 54ae804bc5
commit 26acf4fd05
5 changed files with 9 additions and 3 deletions

View File

@ -23,6 +23,7 @@ before_install:
install:
- pip install -r requirements.txt
- pi pinstall jip==0.7
- pip install -e .
- jip install org.xerial:sqlite-jdbc:3.7.2
- jip install org.hsqldb:hsqldb:1.8.0.10

View File

@ -1,4 +1,5 @@
#!/bin/sh
#!/bin/bash
set -e
sudo apt-get update -qq
sudo apt-get install -qq openjdk-7-jdk openjdk-7-jre

View File

@ -1,4 +1,5 @@
#!/bin/sh
#!/bin/bash
set -e
pip install jip==0.7
jip install org.python:$JYTHON

View File

@ -1,4 +1,5 @@
#!/bin/sh
#!/bin/bash
set -e
cat requirements_python.txt >> requirements.txt
ln -s $VIRTUAL_ENV ~/myvirtualenv

View File

@ -1,4 +1,6 @@
#!/bin/sh
set -e
pip install jip==0.7
install="${TRAVIS_BUILD_DIR}/ci/install_${BACKEND}.sh"