matcher/.gitlab-ci.yml

33 lines
1012 B
YAML
Raw Normal View History

2023-04-06 09:12:49 +00:00
image: docker:20.10.22
stages:
- test
- build
2023-11-04 09:25:17 +00:00
include:
- template: Security/SAST.gitlab-ci.yml
2023-11-04 09:31:05 +00:00
- template: Security/Secret-Detection.gitlab-ci.yml
2024-04-02 09:42:54 +00:00
- project: mobicoop/v3/gitlab-templates
file: /ci/release.build-job.yml
2023-11-04 09:25:17 +00:00
2023-04-06 09:12:49 +00:00
##############
# 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 $CI_PROJECT_NAME-tools --env-file ci/.env.ci up -d
2023-04-06 09:12:49 +00:00
- sh ci/wait-up.sh
- docker-compose -f docker-compose.ci.service.yml -p $CI_PROJECT_NAME-service --env-file ci/.env.ci up -d
- docker exec -t v3-$CI_PROJECT_NAME-api sh -c "npm run test:integration:ci"
2023-04-06 09:12:49 +00:00
coverage: /All files[^|]*\|[^|]*\s+([\d\.]+)/
rules:
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH || $CI_MERGE_REQUEST_TARGET_BRANCH_NAME =~ /^release/ || $CI_COMMIT_MESSAGE =~ /--check/ || $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
2023-04-06 09:12:49 +00:00
when: always