blob: b008e2910d256fd28de61ed5ceadb5db493bd4de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
before_script:
- apt-get update
- apt-get install -q -y locales-all python-pip libpq-dev python-dev libjpeg-dev zlib1g-dev libxml2-dev libxslt1-dev libgeos-dev libexiv2-dev libgdal-dev
- export CPLUS_INCLUDE_PATH=/usr/include/gdal
- export C_INCLUDE_PATH=/usr/include/gdal
- pip install -q -r requirements.txt
- cp Makefile.example Makefile
- cp chimere_example_project/local_settings.py.gitlab-ci chimere_example_project/local_settings.py
variables:
POSTGRES_DB: gis
POSTGRES_USER: gis
POSTGRES_PASSWORD: "gis"
services:
- postgres:9.4
master:
script: "make test_gitlab"
only:
- master
- v3.0
tags:
- jessie
|