74 lines
2.2 KiB
Bash
74 lines
2.2 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
|
|
|
|
echo "Installing CKAN and its Python dependencies..."
|
|
git clone https://github.com/ckan/ckan
|
|
cd ckan
|
|
if [ $CKANVERSION != 'master' ]
|
|
then
|
|
git checkout $CKANVERSION
|
|
fi
|
|
|
|
# Unpin CKAN's psycopg2 dependency get an important bugfix
|
|
# https://stackoverflow.com/questions/47044854/error-installing-psycopg2-2-6-2
|
|
sed -i '/psycopg2/c\psycopg2' requirements.txt
|
|
|
|
python setup.py develop
|
|
pip install -r requirements.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
|
|
paster db init -c test-core.ini
|
|
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
|
|
|
|
paster harvester initdb -c ../ckan/test-core.ini
|
|
cd -
|
|
|
|
echo "Installing ckanext-spatial and its requirements..."
|
|
pip install -r pip-requirements.txt
|
|
python setup.py develop
|
|
|
|
|
|
echo "Moving test.ini into a subdir..."
|
|
mkdir subdir
|
|
mv test.ini subdir
|
|
|
|
paster spatial initdb -c subdir/test.ini
|
|
|
|
echo "travis-build.bash is done."
|