33 lines
931 B
YAML
33 lines
931 B
YAML
image: docker:20.10.22
|
|
|
|
stages:
|
|
- test
|
|
- build
|
|
|
|
include:
|
|
- template: Security/SAST.gitlab-ci.yml
|
|
- template: Security/Secret-Detection.gitlab-ci.yml
|
|
- project: mobicoop/v3/gitlab-templates
|
|
file: /ci/release.build-job.yml
|
|
|
|
##############
|
|
# TEST STAGE #
|
|
##############
|
|
|
|
test:
|
|
stage: test
|
|
image: docker/compose:latest
|
|
variables:
|
|
DOCKER_TLS_CERTDIR: ''
|
|
services:
|
|
- docker:dind
|
|
script:
|
|
- docker-compose -f docker-compose.ci.tools.yml -p matcher-tools --env-file ci/.env.ci up -d
|
|
- sh ci/wait-up.sh
|
|
- docker-compose -f docker-compose.ci.service.yml -p matcher-service --env-file ci/.env.ci up -d
|
|
- docker exec -t v3-matcher-api sh -c "npm run test:integration:ci"
|
|
coverage: /All files[^|]*\|[^|]*\s+([\d\.]+)/
|
|
rules:
|
|
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH || $CI_COMMIT_MESSAGE =~ /--check/ || $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
|
when: always
|