cic-internal-integration/.gitlab-ci.yml

63 lines
1.8 KiB
YAML
Raw Normal View History

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
- 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:
2021-10-16 00:01:42 +02:00
- version
2021-01-24 21:16:22 +01:00
- build
- test
2021-08-28 18:26:16 +02:00
- deploy
image: registry.gitlab.com/grassrootseconomics/cic-internal-integration/docker-with-compose:latest
variables:
DOCKER_BUILDKIT: "1"
COMPOSE_DOCKER_CLI_BUILD: "1"
CI_DEBUG_TRACE: "true"
SEMVERBOT_VERSION: "0.2.0"
2021-08-28 18:26:16 +02:00
#before_script:
# - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
2021-08-28 18:26:16 +02:00
2021-10-15 23:58:58 +02:00
version:
image: python:3.7-stretch
stage: version
script:
- mkdir -p ~/.ssh && chmod 700 ~/.ssh
- ssh-keyscan gitlab.com >> ~/.ssh/known_hosts && chmod 644 ~/.ssh/known_hosts
- eval $(ssh-agent -s)
- ssh-add <(echo "$SSH_PRIVATE_KEY")
- curl -o sbot -L https://github.com/restechnica/semverbot/releases/download/v$SEMVERBOT_VERSION/sbot-linux-amd64
- chmod +x sbot
- ./sbot predict version -m git-commit
- export TAG=$(./sbot predict version)
- echo $TAG > version
- git tag -a v$TAG -m "ci tagged"
- git push origin v$TAG
artifacts:
paths:
- version
2021-10-16 03:47:01 +02:00
rules:
- if: $CI_COMMIT_REF_PROTECTED == "true"
when: always
2021-10-15 23:58:58 +02:00
2021-08-28 18:26:16 +02:00
# 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-10-15 23:58:58 +02:00
- TAG=$(cat ./version) ./scripts/build-push.sh
2021-08-28 18:26:16 +02:00
rules:
- if: $CI_COMMIT_REF_PROTECTED == "true"
when: always