2018-11-06 10:30:27 +01:00
|
|
|
image: tcitworld/mobilizon-ci
|
2018-01-13 23:35:11 +01:00
|
|
|
|
2018-12-18 12:26:10 +01:00
|
|
|
stages:
|
2019-10-05 21:17:18 +02:00
|
|
|
- check
|
|
|
|
- test
|
2019-03-18 12:37:04 +01:00
|
|
|
- deploy
|
2020-11-09 10:04:55 +01:00
|
|
|
- docker
|
2018-01-13 23:35:11 +01:00
|
|
|
|
2018-01-13 23:40:06 +01:00
|
|
|
variables:
|
|
|
|
MIX_ENV: "test"
|
2019-01-03 11:33:52 +01:00
|
|
|
# DB Variables for Postgres / Postgis
|
2018-10-11 17:37:39 +02:00
|
|
|
POSTGRES_DB: mobilizon_test
|
2018-01-14 00:21:20 +01:00
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: ""
|
2018-01-14 00:47:03 +01:00
|
|
|
POSTGRES_HOST: postgres
|
2019-01-03 11:33:52 +01: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 11:24:22 +01:00
|
|
|
GEOLITE_CITIES_PATH: "/usr/share/GeoIP/GeoLite2-City.mmdb"
|
2019-10-05 19:07:50 +02:00
|
|
|
MOBILIZON_INSTANCE_REGISTRATIONS_OPEN: "true"
|
2018-01-13 23:40:06 +01:00
|
|
|
|
2019-10-07 10:59:21 +02:00
|
|
|
cache:
|
|
|
|
key: ${CI_COMMIT_REF_SLUG}
|
|
|
|
paths:
|
2019-10-07 11:27:06 +02:00
|
|
|
- ~/.cache/Cypress
|
2020-01-30 20:27:25 +01:00
|
|
|
- _build/
|
2019-10-07 10:59:21 +02:00
|
|
|
- deps/
|
|
|
|
- js/node_modules
|
2019-10-07 11:15:19 +02:00
|
|
|
- cache/Cypress
|
2019-10-07 10:59:21 +02:00
|
|
|
|
2019-10-05 21:17:18 +02:00
|
|
|
lint:
|
|
|
|
stage: check
|
2019-03-22 11:37:58 +01:00
|
|
|
script:
|
2019-10-07 10:59:21 +02:00
|
|
|
- export EXITVALUE=0
|
2019-03-22 11:37:58 +01:00
|
|
|
- mix deps.get
|
2020-01-30 20:27:25 +01:00
|
|
|
- mix credo --strict -a || export EXITVALUE=1
|
2019-10-07 10:59:21 +02:00
|
|
|
- mix format --check-formatted --dry-run || export EXITVALUE=1
|
2019-03-22 11:04:57 +01:00
|
|
|
- cd js
|
2019-04-10 17:30:18 +02:00
|
|
|
- yarn install
|
2020-02-18 08:57:00 +01:00
|
|
|
#- yarn run lint || export EXITVALUE=1
|
2020-06-26 15:23:24 +02:00
|
|
|
- yarn run prettier --ignore-path="src/i18n/*" -c . || export EXITVALUE=1
|
2019-10-07 10:59:21 +02:00
|
|
|
- yarn run build
|
|
|
|
- cd ../
|
|
|
|
- exit $EXITVALUE
|
|
|
|
artifacts:
|
|
|
|
expire_in: 1 day
|
|
|
|
when: on_success
|
2019-03-22 11:04:57 +01:00
|
|
|
paths:
|
2019-10-07 10:59:21 +02:00
|
|
|
- priv/static
|
2019-03-22 11:04:57 +01:00
|
|
|
|
2019-10-05 21:17:18 +02:00
|
|
|
deps:
|
|
|
|
stage: check
|
2018-12-18 12:26:10 +01:00
|
|
|
script:
|
2019-10-07 10:59:21 +02:00
|
|
|
- export EXITVALUE=0
|
2019-03-08 13:42:34 +01:00
|
|
|
- mix deps.get
|
2019-10-07 10:59:21 +02:00
|
|
|
- mix hex.outdated || export EXITVALUE=1
|
2019-10-05 21:17:18 +02:00
|
|
|
- cd js
|
2019-10-07 10:59:21 +02:00
|
|
|
- yarn outdated || export EXITVALUE=1
|
|
|
|
- exit $EXITVALUE
|
2019-03-08 13:42:34 +01:00
|
|
|
allow_failure: true
|
2018-01-13 23:35:11 +01:00
|
|
|
|
2019-10-05 21:17:18 +02:00
|
|
|
exunit:
|
|
|
|
stage: test
|
2018-12-18 12:26:10 +01:00
|
|
|
services:
|
2020-02-18 08:57:00 +01:00
|
|
|
- name: mdillon/postgis:11
|
|
|
|
alias: postgres
|
2018-12-18 12:26:10 +01:00
|
|
|
before_script:
|
2019-10-07 10:59:21 +02:00
|
|
|
- cd js
|
|
|
|
- yarn install
|
|
|
|
- yarn run build
|
|
|
|
- cd ../
|
2018-12-18 12:26:10 +01:00
|
|
|
- mix deps.get
|
|
|
|
- MIX_ENV=test mix ecto.create
|
|
|
|
- MIX_ENV=test mix ecto.migrate
|
2019-10-07 10:59:21 +02:00
|
|
|
dependencies:
|
|
|
|
- lint
|
2018-01-13 23:35:11 +01:00
|
|
|
script:
|
2018-12-18 12:26:10 +01:00
|
|
|
- mix coveralls
|
2020-06-03 19:04:22 +02:00
|
|
|
# cypress:
|
|
|
|
# stage: test
|
|
|
|
# services:
|
|
|
|
# - name: mdillon/postgis:11
|
|
|
|
# alias: postgres
|
|
|
|
# script:
|
|
|
|
# - mix deps.get
|
|
|
|
# - cd js
|
|
|
|
# - yarn install
|
|
|
|
# - npx cypress install # just to be sure
|
|
|
|
# - yarn run build
|
|
|
|
# - cd ../
|
|
|
|
# - MIX_ENV=e2e mix ecto.create
|
|
|
|
# - MIX_ENV=e2e mix ecto.migrate
|
|
|
|
# - MIX_ENV=e2e mix run priv/repo/e2e.seed.exs
|
|
|
|
# - MIX_ENV=e2e mix phx.server &
|
|
|
|
# - cd js
|
|
|
|
# - npx wait-on http://localhost:4000
|
|
|
|
# - if [ -z "$CYPRESS_KEY" ]; then npx cypress run; else npx cypress run --record --parallel --key $CYPRESS_KEY; fi
|
|
|
|
# artifacts:
|
|
|
|
# expire_in: 2 day
|
|
|
|
# paths:
|
|
|
|
# - js/tests/e2e/screenshots/**/*.png
|
|
|
|
# - js/tests/e2e/videos/**/*.mp4
|
2019-10-05 21:17:18 +02:00
|
|
|
|
2020-10-22 12:11:38 +02:00
|
|
|
# pages:
|
|
|
|
# stage: deploy
|
|
|
|
# script:
|
|
|
|
# # - mkdir public
|
|
|
|
# # Mobilizon documentation is now on https://framagit.org/framasoft/joinmobilizon/documentation
|
|
|
|
# # Mix docs disabled because of https://github.com/elixir-lang/ex_doc/issues/1172
|
|
|
|
# # - mix deps.get
|
|
|
|
# # - mix docs
|
|
|
|
# # - mv doc public/backend
|
|
|
|
# #- cd js
|
|
|
|
# #- yarn install
|
|
|
|
# #- yarn run styleguide:build
|
|
|
|
# #- mv styleguide ../public/frontend
|
|
|
|
# only:
|
|
|
|
# - master
|
|
|
|
# artifacts:
|
|
|
|
# expire_in: 1 hour
|
|
|
|
# paths:
|
|
|
|
# - public
|
2020-11-09 10:04:55 +01:00
|
|
|
|
|
|
|
.docker: &docker
|
|
|
|
stage: docker
|
|
|
|
cache: {}
|
|
|
|
image:
|
|
|
|
name: gcr.io/kaniko-project/executor:debug
|
|
|
|
entrypoint: [""]
|
|
|
|
before_script:
|
|
|
|
- mkdir -p /kaniko/.docker
|
|
|
|
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$CI_REGISTRY_AUTH\",\"email\":\"$CI_REGISTRY_EMAIL\"}}}" > /kaniko/.docker/config.json
|
|
|
|
script:
|
|
|
|
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/docker/production/Dockerfile --destination $DOCKER_IMAGE_NAME
|
|
|
|
|
|
|
|
build-docker-master:
|
|
|
|
<<: *docker
|
|
|
|
only:
|
|
|
|
- schedules
|
|
|
|
variables:
|
|
|
|
DOCKER_IMAGE_NAME: framasoft/mobilizon:master
|
|
|
|
|
|
|
|
build-docker-tag:
|
|
|
|
<<: *docker
|
|
|
|
only:
|
|
|
|
- tags
|
|
|
|
variables:
|
|
|
|
DOCKER_IMAGE_NAME: framasoft/mobilizon:$CI_COMMIT_TAG
|