-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
94 lines (78 loc) · 2.39 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
sudo: required
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
services:
- docker
- postgresql
addons:
postgresql: 9.6
apt:
packages:
- postgresql-9.6-postgis-2.3
env:
- BACKEND: 'geonode.geoserver'
- BACKEND: 'geonode.qgis_server'
DOCKER_COMPOSE_VERSION: 1.11.2
# This is qgis server address
QGIS_SERVER_URL: http://localhost:9000/
# This is the location of docker network bridge
# So QGIS server can access this address
SITEURL: http://localhost:8000/
QGIS_SERVER_PORT: 9000
ON_TRAVIS: True
CELERY_ALWAYS_EAGER: True
branches:
only:
- master
- 2.9.x
- 2.7.x
- 2.6.x
before_install:
- scripts/misc/qgis_server_setup.sh before_install
- chmod +x scripts/misc/bdd_setup.sh
- scripts/misc/bdd_setup.sh before_install
install:
- sudo apt-get -qq -y update
- sudo apt-get install -y libgdal1h python-gdal gdal-bin spatialite-bin
- sudo apt-get install -y python-virtualenv python-imaging python-lxml python-pyproj python-shapely python-nose python-httplib2 python-httplib2 gettext
- sudo apt-get install -y python-dev libxml2 libxml2-dev libxslt1-dev zlib1g-dev libjpeg-dev libpq-dev libgdal-dev git default-jdk
- sudo add-apt-repository -y ppa:webupd8team/java
- sudo apt-get update
- sudo apt-get install -y --force-yes oracle-java8-installer ant maven2 --no-install-recommends
- sudo update-java-alternatives --set java-8-oracle
- pip install -r requirements.txt --no-deps
- pip install -e .
- pip install pygdal==`gdal-config --version`
- pip install codecov
before_script:
# Initialize DB
# - sudo apt-get install postgresql-9.6-postgis-2.3 -y -q
- psql -U postgres -c "create extension postgis"
- chmod +x scripts/misc/create_dbs_travis.sh
- scripts/misc/create_dbs_travis.sh before_script
# For QGIS Server Travis steps
- scripts/misc/qgis_server_setup.sh before_script
- scripts/misc/bdd_setup.sh before_script
- paver setup
script:
- paver run_tests --coverage --local false
after_script:
# For QGIS Server Travis steps
- scripts/misc/qgis_server_setup.sh after_script
# Cleanup
- paver reset_hard
after_success:
- codecov
notifications:
irc:
channels:
- "irc.freenode.org#geonode"
use_notice: true
email:
slack: geonode-sprint:oQylJRkU9feZ8JruGi6czWwe