2021-01-24 21:16:22 +01:00
|
|
|
include:
|
2021-08-28 18:26:16 +02:00
|
|
|
#- local: 'ci_templates/.cic-template.yml' #kaniko build templates
|
|
|
|
# these includes are app specific unit tests
|
2021-02-04 05:36:32 +01:00
|
|
|
- local: 'apps/cic-eth/.gitlab-ci.yml'
|
2021-02-06 19:28:08 +01:00
|
|
|
- local: 'apps/cic-ussd/.gitlab-ci.yml'
|
2021-02-07 03:29:24 +01:00
|
|
|
- local: 'apps/cic-notify/.gitlab-ci.yml'
|
2021-02-08 18:31:29 +01:00
|
|
|
- local: 'apps/cic-meta/.gitlab-ci.yml'
|
2021-02-18 06:04:30 +01:00
|
|
|
- local: 'apps/cic-cache/.gitlab-ci.yml'
|
2021-08-28 18:26:16 +02:00
|
|
|
#- local: 'apps/contract-migration/.gitlab-ci.yml'
|
|
|
|
#- local: 'apps/data-seeding/.gitlab-ci.yml'
|
2021-01-24 21:16:22 +01:00
|
|
|
|
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
- test
|
2021-09-21 08:04:44 +02:00
|
|
|
- deploy
|
2021-08-28 18:26:16 +02:00
|
|
|
|
2021-09-21 08:04:44 +02:00
|
|
|
image: registry.gitlab.com/grassrootseconomics/cic-internal-integration/docker-with-compose:latest
|
2021-08-28 18:26:16 +02:00
|
|
|
|
|
|
|
variables:
|
|
|
|
DOCKER_BUILDKIT: "1"
|
2021-09-21 08:04:44 +02:00
|
|
|
COMPOSE_DOCKER_CLI_BUILD: "1"
|
2021-08-28 18:26:16 +02:00
|
|
|
CI_DEBUG_TRACE: "true"
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
|
|
|
|
|
|
|
|
# runs on protected branches and pushes to repo
|
|
|
|
build-push:
|
|
|
|
stage: build
|
|
|
|
tags:
|
|
|
|
- integration
|
2021-09-01 22:00:44 +02:00
|
|
|
#script:
|
|
|
|
# - TAG=$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA sh ./scripts/build-push.sh
|
2021-08-28 18:26:16 +02:00
|
|
|
script:
|
2021-09-01 22:00:44 +02:00
|
|
|
- TAG=latest sh ./scripts/build-push.sh
|
2021-08-28 18:26:16 +02:00
|
|
|
rules:
|
|
|
|
- if: $CI_COMMIT_REF_PROTECTED == "true"
|
|
|
|
when: always
|
2021-09-09 23:28:49 +02:00
|
|
|
|
|
|
|
deploy-dev:
|
|
|
|
stage: deploy
|
|
|
|
trigger: grassrootseconomics/devops
|
|
|
|
when: manual
|