109 lines
2.9 KiB
Bash
109 lines
2.9 KiB
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "This is travis-build.bash..."
|
|
|
|
echo "Installing the packages that CKAN requires..."
|
|
sudo apt-get update -qq
|
|
sudo apt-get install solr-jetty
|
|
|
|
|
|
if python -c 'import sys;exit(sys.version_info < (3,))'
|
|
then
|
|
PYTHONVERSION=3
|
|
else
|
|
PYTHONVERSION=2
|
|
fi
|
|
|
|
echo "Installing CKAN and its Python dependencies..."
|
|
git clone https://github.com/ckan/ckan
|
|
cd ckan
|
|
if [ $CKANVERSION == 'master' ]
|
|
then
|
|
echo "CKAN version: master"
|
|
else
|
|
CKAN_TAG=$(git tag | grep ^ckan-$CKANVERSION | sort --version-sort | tail -n 1)
|
|
git checkout $CKAN_TAG
|
|
echo "CKAN version: ${CKAN_TAG#ckan-}"
|
|
fi
|
|
|
|
if [ -f requirement-setuptools.txt ]
|
|
then
|
|
pip install -r requirement-setuptools.txt
|
|
fi
|
|
|
|
python setup.py develop
|
|
|
|
if [ -f requirements-py2.txt ] && [ $PYTHONVERSION = 2 ]
|
|
then
|
|
grep -v psycopg2 < requirements-py2.txt > reqs.txt
|
|
else
|
|
grep -v psycopg2 < requirements.txt > reqs.txt
|
|
fi
|
|
pip install psycopg2==2.7.7 # workaround travis 10 psycopg2 incompatibility
|
|
pip install -r reqs.txt
|
|
pip install -r dev-requirements.txt
|
|
cd -
|
|
|
|
echo "Setting up Solr..."
|
|
# solr is multicore for tests on ckan master now, but it's easier to run tests
|
|
# on Travis single-core still.
|
|
# see https://github.com/ckan/ckan/issues/2972
|
|
sed -i -e 's/solr_url.*/solr_url = http:\/\/127.0.0.1:8983\/solr/' ckan/test-core.ini
|
|
printf "NO_START=0\nJETTY_HOST=127.0.0.1\nJETTY_PORT=8983\nJAVA_HOME=$JAVA_HOME" | sudo tee /etc/default/jetty
|
|
sudo cp ckan/ckan/config/solr/schema.xml /etc/solr/conf/schema.xml
|
|
sudo service jetty restart
|
|
|
|
echo "Creating the PostgreSQL user and database..."
|
|
sudo -u postgres psql -c "CREATE USER ckan_default WITH PASSWORD 'pass';"
|
|
sudo -u postgres psql -c 'CREATE DATABASE ckan_test WITH OWNER ckan_default;'
|
|
|
|
echo "Setting up PostGIS on the database..."
|
|
sudo -u postgres psql -d ckan_test -c 'CREATE EXTENSION postgis;'
|
|
sudo -u postgres psql -d ckan_test -c 'ALTER VIEW geometry_columns OWNER TO ckan_default;'
|
|
sudo -u postgres psql -d ckan_test -c 'ALTER TABLE spatial_ref_sys OWNER TO ckan_default;'
|
|
|
|
echo "Install other libraries required..."
|
|
sudo apt-get install python-dev libxml2-dev libxslt1-dev libgeos-c1
|
|
|
|
echo "Initialising the database..."
|
|
cd ckan
|
|
if [ $CKANVERSION \< '2.9' ]
|
|
then
|
|
paster db init -c test-core.ini
|
|
else
|
|
ckan -c test-core.ini db init
|
|
fi
|
|
cd -
|
|
|
|
echo "Installing ckanext-harvest and its requirements..."
|
|
git clone https://github.com/ckan/ckanext-harvest
|
|
cd ckanext-harvest
|
|
python setup.py develop
|
|
pip install -r pip-requirements.txt
|
|
if [ $CKANVERSION \< '2.9' ]
|
|
then
|
|
paster harvester initdb -c ../ckan/test-core.ini
|
|
fi
|
|
|
|
cd -
|
|
|
|
echo "Installing ckanext-spatial and its requirements..."
|
|
pip install -r pip-requirements.txt
|
|
python setup.py develop
|
|
pip install pycsw
|
|
|
|
echo "Moving test.ini into a subdir..."
|
|
mkdir subdir
|
|
mv test.ini subdir
|
|
|
|
if [ $CKANVERSION \< '2.9' ]
|
|
then
|
|
paster spatial initdb -c subdir/test.ini
|
|
else
|
|
ckan -c subdir/test.ini harvester initdb
|
|
ckan -c subdir/test.ini spatial initdb
|
|
fi
|
|
|
|
echo "travis-build.bash is done."
|