2016-08-08 23:11:16 +08:00
|
|
|
language: c
|
2016-08-08 22:26:35 +08:00
|
|
|
|
|
|
|
before_install:
|
|
|
|
- sudo apt-get -y install python-pip
|
|
|
|
|
|
|
|
- sudo apt-get -y install python-software-properties
|
|
|
|
- sudo add-apt-repository -y ppa:cartodb/sci
|
|
|
|
- sudo add-apt-repository -y ppa:cartodb/postgresql-9.5
|
|
|
|
- sudo add-apt-repository -y ppa:cartodb/gis
|
|
|
|
- sudo apt-get update
|
|
|
|
|
|
|
|
- sudo apt-get -y install python-joblib=0.8.3-1-cdb1
|
|
|
|
- sudo apt-get -y install python-numpy=1:1.6.1-6ubuntu1
|
|
|
|
|
|
|
|
# Install pysal
|
|
|
|
- sudo pip install -I pysal==1.11.2
|
|
|
|
|
|
|
|
- sudo apt-get -y install python-scipy=0.14.0-2-cdb6
|
|
|
|
- sudo apt-get -y --no-install-recommends install python-sklearn-lib=0.14.1-3-cdb2
|
|
|
|
- sudo apt-get -y --no-install-recommends install python-sklearn=0.14.1-3-cdb2
|
|
|
|
- sudo apt-get -y --no-install-recommends install python-scikits-learn=0.14.1-3-cdb2
|
|
|
|
|
|
|
|
# Install postgres db and build deps
|
2016-08-08 23:15:41 +08:00
|
|
|
- sudo apt-get -y install postgresql-9.5 postgresql-server-dev-9.5 postgresql-plpython-9.5 postgresql-9.5-postgis-2.2 postgresql-9.5-postgis-scripts
|
2016-08-08 22:26:35 +08:00
|
|
|
|
|
|
|
# configure it to accept local connections from postgres
|
2016-08-08 22:34:01 +08:00
|
|
|
- echo -e "# TYPE DATABASE USER ADDRESS METHOD \nlocal all postgres trust\nlocal all all trust\nhost all all 127.0.0.1/32 trust" \
|
|
|
|
| sudo tee /etc/postgresql/9.5/main/pg_hba.conf
|
2016-08-08 22:26:35 +08:00
|
|
|
- sudo service postgresql reload
|
|
|
|
|
|
|
|
script:
|
|
|
|
- sudo make install
|
|
|
|
- make test
|