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

36 lines
673 B
YAML
Raw Normal View History

image: tcitworld/mobilizon-ci
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: "/usr/share/GeoIP/GeoLite2-City.mmdb"
cache:
paths:
- deps
- _build
- .rebar3
- ~/.mix
- ~/.hex
- js/node_modules
2018-01-13 23:35:11 +01:00
before_script:
- cd js && npm install && npm run build && cd ../
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
2018-01-13 23:35:11 +01:00
mix:
script:
- mix format --check-formatted --dry-run
- mix coveralls