summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: e44c9320750b6a545b3873a114b0057d46058298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
before_script:
  - apt-get update
  - apt-get install -q -y python-pip libpq-dev python-dev libjpeg-dev zlib1g-dev libxml2-dev libxslt1-dev libgeos-dev
  - pip install -q -r requirements.txt
  - cp Makefile.example Makefile
  - echo "LOG_PATH = '/tmp/'" > chimere_example_project/local_settings.py

variables:
  POSTGRES_DB: chimere
  POSTGRES_USER: chimere
  POSTGRES_PASSWORD: "chimere"

services:
  - mdillon/postgis:9.1

master:
  script: "make test_gitlab"
  only:
    - master