2018-11-06 09:30:27 +00:00
|
|
|
image: tcitworld/mobilizon-ci
|
2018-01-13 22:35:11 +00:00
|
|
|
|
2018-12-18 11:26:10 +00:00
|
|
|
stages:
|
|
|
|
- front
|
|
|
|
- back
|
2018-01-13 22:35:11 +00:00
|
|
|
|
2018-01-13 22:40:06 +00:00
|
|
|
variables:
|
|
|
|
MIX_ENV: "test"
|
2019-01-03 10:33:52 +00:00
|
|
|
# DB Variables for Postgres / Postgis
|
2018-10-11 15:37:39 +00:00
|
|
|
POSTGRES_DB: mobilizon_test
|
2018-01-13 23:21:20 +00:00
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: ""
|
2018-01-13 23:47:03 +00:00
|
|
|
POSTGRES_HOST: postgres
|
2019-01-03 10:33:52 +00:00
|
|
|
# DB Variables for Mobilizon
|
|
|
|
MOBILIZON_DATABASE_USERNAME: $POSTGRES_USER
|
|
|
|
MOBILIZON_DATABASE_PASSWORD: $POSTGRES_PASSWORD
|
|
|
|
MOBILIZON_DATABASE_DBNAME: $POSTGRES_DB
|
|
|
|
MOBILIZON_DATABASE_HOST: $POSTGRES_HOST
|
2018-12-18 10:24:22 +00:00
|
|
|
GEOLITE_CITIES_PATH: "/usr/share/GeoIP/GeoLite2-City.mmdb"
|
2018-01-13 22:40:06 +00:00
|
|
|
|
2018-12-18 11:26:10 +00:00
|
|
|
js:
|
|
|
|
stage: front
|
|
|
|
before_script:
|
|
|
|
- cd js
|
|
|
|
- npm install
|
|
|
|
script:
|
|
|
|
- npm run build
|
|
|
|
after_script:
|
|
|
|
- cd ../
|
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- js/node_modules
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- priv/static
|
|
|
|
untracked: false
|
|
|
|
expire_in: 30 days
|
2018-01-13 22:49:37 +00:00
|
|
|
|
2019-01-03 13:59:59 +00:00
|
|
|
elixir_check:
|
2018-12-18 11:26:10 +00:00
|
|
|
stage: back
|
|
|
|
before_script:
|
|
|
|
- mix deps.get
|
|
|
|
script:
|
|
|
|
- mix format --check-formatted --dry-run
|
2019-01-03 13:59:59 +00:00
|
|
|
- mix credo list
|
2018-12-18 11:26:10 +00:00
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- deps
|
2018-01-13 22:35:11 +00:00
|
|
|
|
|
|
|
mix:
|
2018-12-18 11:26:10 +00:00
|
|
|
stage: back
|
|
|
|
services:
|
|
|
|
- name: mdillon/postgis:10
|
|
|
|
alias: postgres
|
|
|
|
dependencies:
|
|
|
|
- js
|
|
|
|
before_script:
|
|
|
|
- mix deps.get
|
|
|
|
- MIX_ENV=test mix ecto.create
|
|
|
|
- MIX_ENV=test mix ecto.migrate
|
2018-01-13 22:35:11 +00:00
|
|
|
script:
|
2018-12-18 11:26:10 +00:00
|
|
|
- mix coveralls
|
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- deps
|
|
|
|
- _build
|