mobilizon.chapril.org-mobil.../.gitlab-ci.yml

36 lines
895 B
YAML
Raw Normal View History

2018-08-24 12:31:41 +02:00
image: elixir:1.7
2018-01-13 23:35:11 +01:00
services:
2018-08-24 12:31:41 +02:00
- name: mdillon/postgis:10
alias: postgres
2018-01-13 23:35:11 +01:00
variables:
MIX_ENV: "test"
POSTGRES_DB: mobilizon_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ""
POSTGRES_HOST: postgres
GEOLITE_CITIES_PATH: "/builds/tcit/mobilizon/priv/data/GeoLite2-City.mmdb"
cache:
key: "$CI_JOB_NAME"
paths:
- deps
- _build
- .rebar3
2018-01-13 23:35:11 +01:00
before_script:
- apt-get update
- apt-get install -y build-essential postgresql-client git
2018-01-13 23:35:11 +01:00
- mix local.rebar --force
- mix local.hex --force
- mix deps.get
- MIX_ENV=test mix ecto.create
- MIX_ENV=test mix ecto.migrate
- curl http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz --output GeoLite2-City.tar.gz -s && tar zxf GeoLite2-City.tar.gz && mv GeoLite2-City_*/GeoLite2-City.mmdb priv/data/GeoLite2-City.mmdb
2018-01-13 23:35:11 +01:00
mix:
script:
- mix format --check-formatted --dry-run
- mix coveralls